@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
/* ==================== SHOP-EASE MINIMALIST THEME ==================== */

:root {
  /* Default theme colors - MATCHING THE IMAGE */
  --theme-text-color: #1f2937;
  --theme-bg-color: #f9fafb;

  /* Cards are now Solid White like the image */
  --theme-card-bg: #ffffff;
  --theme-card-border: #e5e7eb;

  /* Primary Action Button */
  --theme-primary-color: #111827;
  --theme-secondary-color: #374151;

  /* Global color palette */
  --color-text-main: var(--theme-text-color);
  --color-text-muted: #6b7280;
  --color-surface: var(--theme-card-bg);
  --color-surface-border: var(--theme-card-border);
  --color-primary: var(--theme-primary-color);
  --color-primary-soft: rgba(17, 24, 39, 0.05);
  --color-secondary: var(--theme-secondary-color);

  /* Accent and semantic colors */
  --color-success: #10b981;
  --color-success-soft: #d1fae5;
  --color-success-soft-border: #a7f3d0;
  --color-info: #3b82f6;
  --color-info-strong: #2563eb;
  --color-warning: #ea580c;
  --color-danger: #ef4444;
  --color-danger-alt: #dc2626;
  --color-overlay-dark: rgba(0, 0, 0, 0.2);

  /* Global typography scale */
  --font-family-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Global radius and shadow tokens */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-soft:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-medium:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-large:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Specific override for feature card text to ensure visibility on light-blue background */
.site-footer .footer-feature-card .footer-feature-title,
.site-footer .footer-feature-card .footer-feature-desc {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.site-footer .footer-feature-card .footer-feature-icon svg {
  color: #2b6cb0 !important;
}

/* ==================== GLOBAL RESET ==================== */

* {
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  background: #f9fafb;
  background: var(--theme-bg-color);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: clip;
}

/* Customer pages - Clean Off-White Background */
body:not(.admin-route) {
  background: #f9fafb;
  background: var(--theme-bg-color);
  background-attachment: fixed;
  color: #1f2937;
  color: var(--theme-text-color);
}

#root {
  min-height: 100vh;
  background: transparent;
}

body.admin-route #root {
  background: transparent !important;
}

code {
  font-family:
    source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* Admin pages html background */
html:has(body.admin-route) {
  background: #f3f4f6;
}

@media (prefers-color-scheme: dark) {
  html:has(body.admin-route) {
    background: #111827;
  }
}

/* ==================== TEXT STYLING ==================== */

body:not(.admin-route) *:not(input):not(textarea):not(table):not(th):not(td) {
  text-shadow: none !important;
}

body:not(.admin-route) .MuiTypography-root,
body:not(.admin-route) .MuiButton-root,
body:not(.admin-route) .MuiCardContent-root *,
body:not(.admin-route) .MuiPaper-root *,
body:not(.admin-route) h1,
body:not(.admin-route) h2,
body:not(.admin-route) h3,
body:not(.admin-route) h4,
body:not(.admin-route) h5,
body:not(.admin-route) h6,
body:not(.admin-route) p,
body:not(.admin-route) span:not(.MuiChip-label),
body:not(.admin-route) div,
body:not(.admin-route) a,
body:not(.admin-route) label {
  color: #1f2937 !important;
  color: var(--theme-text-color) !important;
  text-shadow: none !important;
}

/* EXCEPTION: Allow inquiry button to have white text on hover */
body:not(.admin-route) .premium-inquiry-btn:hover,
body:not(.admin-route) .premium-inquiry-btn:hover *,
body:not(.admin-route) .premium-inquiry-btn:hover span,
body:not(.admin-route) .premium-inquiry-btn:hover svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

input,
textarea,
table,
th,
td,
.MuiInputBase-input,
.MuiInput-input,
.MuiOutlinedInput-input,
.MuiTableCell-root,
.MuiDataGrid-root *,
.admin-route * {
  text-shadow: none !important;
}

body:not(.admin-route) .MuiInputBase-input::placeholder {
  color: #9ca3af !important;
  opacity: 1 !important;
}

body:not(.admin-route) .MuiInputBase-input {
  color: #111827 !important;
}

/* ==================== MUI MENU/DROPDOWN FIXES ==================== */

.MuiPopover-root,
.MuiMenu-root,
.MuiPopper-root {
  z-index: 1300 !important;
}

.MuiMenu-paper,
.MuiPopover-paper {
  z-index: 1301 !important;
}

body.MuiModal-hidden {
  overflow: visible !important;
  padding-right: 0 !important;
}

.MuiAppBar-root .MuiMenu-root {
  z-index: 1400 !important;
}

.MuiAppBar-root .MuiMenu-paper {
  z-index: 1401 !important;
  margin-top: 8px;
}

/* ==================== ADMIN PAGES BACKGROUND ==================== */

body.admin-route {
  background: #f3f4f6 !important;
  min-height: 100vh !important;
  height: auto !important;
  color: #1f2937 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

@media (prefers-color-scheme: dark) {
  body.admin-route {
    background: #111827 !important;
    color: #ffffff !important;
  }
}

body.admin-route .MuiContainer-root {
  background: transparent;
}

body.admin-route .MuiCard-root,
body.admin-route .MuiPaper-root {
  background: #ffffff !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #e5e7eb;
}

@media (prefers-color-scheme: dark) {
  body.admin-route .MuiCard-root,
  body.admin-route .MuiPaper-root {
    background: #1f2937 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid #374151;
  }
}

body.admin-route .MuiTypography-root,
body.admin-route h1,
body.admin-route h2,
body.admin-route h3,
body.admin-route p,
body.admin-route span,
body.admin-route label {
  color: #1f2937 !important;
}

@media (prefers-color-scheme: dark) {
  body.admin-route .MuiTypography-root,
  body.admin-route h1,
  body.admin-route h2,
  body.admin-route h3,
  body.admin-route p,
  body.admin-route span,
  body.admin-route label {
    color: #f9fafb !important;
  }
}

/* ==================== THEME COLORS ==================== */

.themed-text {
  color: #1f2937 !important;
  color: var(--theme-text-color) !important;
}

.themed-card {
  background: #ffffff !important;
  background: var(--theme-card-bg) !important;
  border-color: #e5e7eb !important;
  border-color: var(--theme-card-border) !important;
}

.themed-primary {
  color: #111827 !important;
  color: var(--theme-primary-color) !important;
}

.themed-secondary {
  color: #374151 !important;
  color: var(--theme-secondary-color) !important;
}

.themed-gradient {
  background: #111827 !important;
  background: var(--theme-primary-color) !important;
}

/* ==================== TYPOGRAPHY UTILITIES ==================== */

/* Dashboard Section Headings - Large & Bold */
.section-heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important;
  font-family: var(--font-family-sans) !important;
  font-size: 2rem !important;
  line-height: 1.2 !important;
  line-height: var(--line-height-tight) !important;
  font-weight: 800 !important;
  color: #111827 !important;
  letter-spacing: -0.025em !important;
}

/* Force white text for profile header elements to override theme */
.profile-white {
  color: #ffffff !important;
}
.profile-title {
  font-weight: 700 !important;
}
.profile-name {
  font-weight: 600 !important;
}
.profile-email {
  opacity: 1 !important;
}

/* Nuclear override for profile header - highest specificity */
#profile-header, #profile-header * {
  color: #ffffff !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #ffffff !important; /* Safari */
  text-shadow: 0 1px 3px rgba(0,0,0,0.7) !important;
}

/* Admin Page Heading - Standardized across all admin pages */
.admin-page-heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 2.5rem;
  font-size: var(--font-size-3xl);
  line-height: 1.2;
  line-height: var(--line-height-tight);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .admin-page-heading {
    color: #f9fafb;
  }
}

@media (max-width: 640px) {
  .admin-page-heading {
    font-size: 2rem;
  }
}

.text-heading-xl {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 2rem;
  font-size: var(--font-size-2xl);
  line-height: 1.2;
  line-height: var(--line-height-tight);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.025em;
}

.text-heading-2xl {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 2.5rem;
  font-size: var(--font-size-3xl);
  line-height: 1.2;
  line-height: var(--line-height-tight);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
}

.text-heading-lg {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 1.5rem;
  font-size: var(--font-size-xl);
  line-height: 1.2;
  line-height: var(--line-height-tight);
  font-weight: 700;
  color: #111827;
}

.text-heading-md {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 1.125rem;
  font-size: var(--font-size-lg);
  line-height: 1.5;
  line-height: var(--line-height-normal);
  font-weight: 600;
  color: #1f2937;
}

.text-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 1rem;
  font-size: var(--font-size-md);
  line-height: 1.7;
  line-height: var(--line-height-relaxed);
  font-weight: 400;
  color: #374151;
}

.text-caption {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  line-height: var(--line-height-normal);
  color: #6b7280;
  color: var(--color-text-muted);
}

.text-small {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  line-height: 1.5;
  line-height: var(--line-height-normal);
  color: #6b7280;
  color: var(--color-text-muted);
}

.text-muted {
  color: #6b7280 !important;
  color: var(--color-text-muted) !important;
}

.text-bold {
  font-weight: 700 !important;
}

.text-semibold {
  font-weight: 600 !important;
}

.text-center {
  text-align: center !important;
}

/* ==================== CARD UTILITIES ==================== */

.card-base {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-base:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-medium);
}

.card-elevated {
  background: #ffffff;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-medium);
  border: 1px solid #f3f4f6;
}

/* ==================== PREMIUM INQUIRY BUTTON ==================== */
.premium-inquiry-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3b82f6;
  border: 2px solid var(--color-info);
  color: #3b82f6;
  color: var(--color-info);
  background: transparent;
  transition:
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.premium-inquiry-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
  z-index: -1;
  transition: left 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.premium-inquiry-btn .MuiButton-startIcon,
.premium-inquiry-btn .MuiButton-label {
  position: relative;
  z-index: 1;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.35s ease;
}
.premium-inquiry-btn:hover,
.premium-inquiry-btn:focus {
  color: #ffffff;
  border-color: #2563eb;
  border-color: var(--color-info-strong);
  outline: none;
}
.premium-inquiry-btn:hover::before,
.premium-inquiry-btn:focus::before {
  left: 0;
}
.premium-inquiry-btn:hover .MuiButton-startIcon {
  transform: translateX(-6px) rotate(8deg) scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .premium-inquiry-btn::before,
  .premium-inquiry-btn .MuiButton-startIcon {
    transition: none !important;
  }
}

.card-elevated:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-large);
}

.card-outline {
  background: transparent;
  border-radius: 8px;
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
}

.card-interactive {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-large);
}

/* ==================== BUTTON UTILITIES ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-primary {
  background: #111827;
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: none;
}

.btn-primary:hover:not(:disabled) {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: #374151;
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-secondary:hover:not(:disabled) {
  background: #1f2937;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: #d1d5db;
  color: #1f2937;
  color: var(--color-text-main);
}

.btn-outline:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #6b7280;
  color: var(--color-text-muted);
}

.btn-ghost:hover:not(:disabled) {
  background: #f3f4f6;
  color: #1f2937;
  color: var(--color-text-main);
}

.btn-success {
  background: #10b981;
  background: var(--color-success);
  color: #ffffff;
}

.btn-success:hover:not(:disabled) {
  background: #059669;
  transform: translateY(-1px);
}

.btn-danger {
  background: #ef4444;
  background: var(--color-danger);
  color: #ffffff;
}

.btn-danger:hover:not(:disabled) {
  background: #dc2626;
  background: var(--color-danger-alt);
  transform: translateY(-1px);
}

.btn-pill {
  border-radius: 9999px;
  border-radius: var(--radius-full);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-size: var(--font-size-md);
}

/* ==================== FORM UTILITIES ==================== */

.input-glass {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #1f2937;
  color: var(--color-text-main);
  box-shadow: none;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 1rem;
  font-size: var(--font-size-md);
}

.input-glass::placeholder {
  color: #9ca3af;
}

.input-glass:focus {
  outline: none;
  border-color: #111827;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #374151;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-helper {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  color: #6b7280;
  color: var(--color-text-muted);
}

.form-error {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  color: #ef4444;
  color: var(--color-danger);
  font-weight: 500;
}

/* ==================== UNIVERSAL TABLE STYLES ==================== */

/* Table Container - Responsive wrapper */
.table-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
}

@media (prefers-color-scheme: dark) {
  .table-container {
    background: #1f2937;
    border-color: #374151;
  }
}

/* Base Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
}

/* Product Management page: center all table content inside the product-management-container */
.product-management-container .data-table th,
.product-management-container .data-table td {
  text-align: center;
}

.product-management-container .data-table td .table-actions {
  justify-content: center;
}

.product-management-container .table-image {
  margin: 0 auto;
  display: block;
}

/* Table Header */
.data-table thead {
  background: #f9fafb;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

@media (prefers-color-scheme: dark) {
  .data-table thead {
    background: #111827;
  }
}

.data-table thead tr {
  background: #000;
  color: #fff;
}

.data-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff !important;
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
  background: inherit;
}

@media (prefers-color-scheme: dark) {
  .data-table th {
    color: #9ca3af;
    border-bottom-color: #374151;
  }
}

/* Table Header - Center alignment option */
.data-table th.text-center {
  text-align: center;
}

/* Table Header - Right alignment option */
.data-table th.text-right {
  text-align: right;
}

/* Table Body */
.data-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.15s ease;
}

@media (prefers-color-scheme: dark) {
  .data-table tbody tr {
    border-bottom-color: #374151;
  }
}

.data-table tbody tr:hover {
  background: #f9fafb;
}

@media (prefers-color-scheme: dark) {
  .data-table tbody tr:hover {
    background: #1e293b;
  }
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

/* Table Cells */

.data-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #222 !important;
  vertical-align: middle;
}

@media (prefers-color-scheme: dark) {
  .data-table td {
    color: #e5e7eb;
  }
}

/* Table Cell - Center alignment */
.data-table td.text-center {
  text-align: center;
}

/* Table Cell - Right alignment */
.data-table td.text-right {
  text-align: right;
}

/* Table Cell - Compact padding */
.data-table td.cell-compact {
  padding: 0.75rem 1rem;
}

/* Table Cell - Bold text */

.data-table td.cell-bold {
  font-weight: 700;
  color: #000 !important;
}

@media (prefers-color-scheme: dark) {
  .data-table td.cell-bold {
    color: #f9fafb;
  }
}

/* Table Cell - Muted text */

.data-table td.cell-muted {
  color: #444 !important;
}

@media (prefers-color-scheme: dark) {
  .data-table td.cell-muted {
    color: #9ca3af;
  }
}

/* ==================== TABLE IMAGE STYLES ==================== */

.table-image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid #e5e7eb;
  display: block;
}

@media (prefers-color-scheme: dark) {
  .table-image {
    border-color: #374151;
  }
}

.table-image-sm {
  width: 32px;
  height: 32px;
}

.table-image-lg {
  width: 64px;
  height: 64px;
}

.table-image-rounded {
  border-radius: 50%;
}

/* ==================== TABLE ACTION BUTTONS ==================== */

.table-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.table-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.table-action-btn svg {
  width: 18px;
  height: 18px;
}

/* Edit Button */
.table-action-btn.btn-edit {
  color: #3b82f6;
  color: var(--color-info);
}

.table-action-btn.btn-edit:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: scale(1.1);
}

/* Delete Button */
.table-action-btn.btn-delete {
  color: #ef4444;
  color: var(--color-danger);
}

.table-action-btn.btn-delete:hover {
  background: rgba(239, 68, 68, 0.1);
  transform: scale(1.1);
}

/* View Button */
.table-action-btn.btn-view {
  color: #374151;
  color: var(--color-secondary);
}

.table-action-btn.btn-view:hover {
  background: rgba(55, 65, 81, 0.1);
  transform: scale(1.1);
}

/* Ensure action buttons group is centered when the cell is marked as text-center */
.data-table td.text-center .table-actions {
  justify-content: center;
  margin: 0 auto;
}

/* ==================== TABLE STATUS BADGES ==================== */

.table-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.table-status-badge.status-active {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #166534;
}

.table-status-badge.status-inactive {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #6b7280;
}

.table-status-badge.status-pending {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
}

.table-status-badge.status-success {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #166534;
}

.table-status-badge.status-error,
.table-status-badge.status-failed {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.table-status-badge.status-warning {
  background: #fed7aa;
  border: 1px solid #fdba74;
  color: #9a3412;
}

.table-status-badge.status-info {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

/* ==================== TABLE PRICE / CURRENCY DISPLAY ==================== */

.table-price {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
}

@media (prefers-color-scheme: dark) {
  .table-price {
    color: #f9fafb;
  }
}

.table-price-currency {
  margin-right: 0.125rem;
  opacity: 0.7;
}

/* ==================== TABLE EMPTY STATE ==================== */

.table-empty-state {
  padding: 3rem 2rem;
  text-align: center;
  color: #9ca3af;
}

.table-empty-state-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  opacity: 0.5;
}

.table-empty-state-title {
  font-size: 1.125rem;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.table-empty-state-description {
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #9ca3af;
}

/* ==================== TABLE PAGINATION ==================== */

.table-pagination {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

@media (min-width: 768px) {
  .table-pagination {
    flex-direction: row;
  }
}

@media (prefers-color-scheme: dark) {
  .table-pagination {
    border-top-color: #374151;
    background: #111827;
  }
}

/* Pagination - Items per page selector */
.pagination-per-page {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-per-page-label {
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #6b7280;
}

@media (prefers-color-scheme: dark) {
  .pagination-per-page-label {
    color: #9ca3af;
  }
}

.pagination-per-page-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-per-page-select:focus {
  outline: none;
  border-color: #3b82f6;
  border-color: var(--color-info);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

@media (prefers-color-scheme: dark) {
  .pagination-per-page-select {
    background: #1f2937;
    border-color: #374151;
    color: #e5e7eb;
  }
}

/* Pagination - Page controls */
.pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #d1d5db;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn.active {
  background: #3b82f6;
  background: var(--color-info);
  border-color: #3b82f6;
  border-color: var(--color-info);
  color: #ffffff;
  font-weight: 600;
}

@media (prefers-color-scheme: dark) {
  .pagination-btn {
    background: #1f2937;
    border-color: #374151;
    color: #e5e7eb;
  }

  .pagination-btn:hover:not(:disabled) {
    background: #374151;
  }
}

/* Pagination - Page info */
.pagination-info {
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #6b7280;
}

@media (prefers-color-scheme: dark) {
  .pagination-info {
    color: #9ca3af;
  }
}

/* ==================== TABLE LOADING STATE ==================== */

.table-loading {
  padding: 3rem 2rem;
  text-align: center;
}

.table-loading-spinner {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 4px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-top-color: var(--color-info);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.table-loading-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #9ca3af;
}

/* ==================== TABLE RESPONSIVE UTILITIES ==================== */

/* Hide columns on small screens */
@media (max-width: 768px) {
  .data-table th.hide-mobile,
  .data-table td.hide-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .data-table th.hide-sm,
  .data-table td.hide-sm {
    display: none;
  }
}

/* Compact table on mobile */
@media (max-width: 640px) {
  .data-table th,
  .data-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
    font-size: var(--font-size-xs);
  }

  .table-image {
    width: 36px;
    height: 36px;
  }
}

/* ==================== STATUS PILLS (Legacy support) ==================== */

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.status-pill--active {
  background: #d1fae5;
  background: var(--color-success-soft);
  border: 1px solid #a7f3d0;
  border: 1px solid var(--color-success-soft-border);
  color: #166534;
}

.status-pill--inactive {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #6b7280;
}

.status-pill--pending {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
}

.status-pill--success {
  background: #d1fae5;
  background: var(--color-success-soft);
  border: 1px solid #a7f3d0;
  border: 1px solid var(--color-success-soft-border);
  color: #166534;
}

.status-pill--error {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.status-pill--warning {
  background: #fed7aa;
  border: 1px solid #fdba74;
  color: #9a3412;
}

.status-pill--info {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

/* Legacy table header class */
.table-header {
  padding: 0.85rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
}

/* Legacy table row class */
.table-row {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.15s ease;
}

.table-row:hover {
  background: #f9fafb;
}

/* Legacy table cell class */
.table-cell {
  padding: 1rem 1.5rem;
  color: #1f2937;
  color: var(--color-text-main);
}

/* ==================== REMAINING STYLES (existing code continues) ==================== */

/* ==================== BADGE UTILITIES ==================== */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: 1;
}

.badge-primary {
  background: #111827;
  background: var(--color-primary);
  color: #ffffff;
}

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

.badge-danger {
  background: #ef4444;
  background: var(--color-danger);
  color: #ffffff;
}

.badge-warning {
  background: #ea580c;
  background: var(--color-warning);
  color: #ffffff;
}

/* ==================== UTILITY CLASSES ==================== */

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.mt-auto {
  margin-top: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* ==================== ANIMATION UTILITIES ==================== */

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in-right {
  animation: slide-in-right 0.4s ease-out;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==================== SMOOTH SCROLL ==================== */

.smooth-scroll-container {
  scroll-behavior: smooth;
}

a[href^="#"] {
  scroll-behavior: smooth;
}

/* ==================== RESPONSIVE UTILITIES ==================== */

@media (max-width: 640px) {
  .text-heading-xl {
    font-size: 1.75rem;
  }

  .text-heading-2xl {
    font-size: 2rem;
  }
}

/* ==================== ACCENT HIGHLIGHT ==================== */

.accent-highlight {
  color: #ea580c;
  color: var(--color-warning);
  font-weight: 600;
}

/* ==================== ADMIN SIDEBAR STYLES ==================== */

.admin-sidebar-trigger {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: #ffffff;
  background: var(--theme-card-bg);
  color: #111827;
  color: var(--theme-primary-color);
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
  border: 1px solid var(--theme-card-border);
  transition: all 0.3s ease;
}

.admin-sidebar-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-medium);
  border-color: #111827;
  border-color: var(--theme-primary-color);
  color: #111827;
  color: var(--theme-primary-color);
}

.admin-sidebar-trigger svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .admin-sidebar-trigger {
    top: 10px;
    left: 10px;
    width: 44px;
    height: 44px;
  }
}

/* Admin Sidebar Container */
.admin-sidebar {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  background: var(--theme-card-bg);
  color: #1f2937;
  color: var(--theme-text-color);
  border-right: 1px solid #e5e7eb;
  border-right: 1px solid var(--theme-card-border);
}

/* Admin Sidebar Header */
.admin-sidebar-header {
  padding: 24px 20px;
  text-align: center;
  background: #f9fafb;
  background: var(--theme-bg-color);
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--theme-card-border);
}

.admin-sidebar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-soft);
}

.admin-sidebar-logo svg {
  width: 28px;
  height: 28px;
  color: #111827;
  color: var(--theme-primary-color);
}

.admin-sidebar-title {
  margin: 0 0 4px 0;
  font-size: 1.5rem;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #111827;
  color: var(--theme-primary-color);
  letter-spacing: -0.025em;
}

.admin-sidebar-subtitle {
  margin: 0;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #6b7280;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Admin Sidebar Divider */
.admin-sidebar-divider {
  margin: 0;
  border: none;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--theme-card-border);
}

/* Admin Sidebar Section Label */
.admin-sidebar-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 16px 20px 8px 20px;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  color: var(--color-text-muted);
}

.admin-sidebar-section-label svg {
  width: 12px;
  height: 12px;
}

/* Admin Sidebar Menu */
.admin-sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0 12px;
}

.admin-sidebar-menu-item {
  margin-bottom: 4px;
}

.admin-sidebar-menu-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: transparent;
  color: #6b7280;
  color: var(--color-text-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-sidebar-menu-button:hover {
  background: #f9fafb;
  background: var(--theme-bg-color);
  color: #111827;
  color: var(--theme-primary-color);
  transform: translateX(4px);
}

.admin-sidebar-menu-button.active {
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  color: #111827;
  color: var(--theme-primary-color);
  font-weight: 600;
}

.admin-sidebar-menu-button--highlighted {
  background: transparent;
}

.admin-sidebar-menu-button--highlighted:hover {
  background: #f9fafb;
  background: var(--theme-bg-color);
}

.admin-sidebar-menu-button--highlighted.active {
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  box-shadow: inset 0 0 0 1px #e5e7eb;
  box-shadow: inset 0 0 0 1px var(--theme-card-border);
}

.admin-sidebar-menu-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Admin Sidebar Logout Button */
.admin-sidebar-logout {
  color: #6b7280;
  color: var(--color-text-muted);
}

.admin-sidebar-logout:hover {
  background: #fee2e2;
  color: #ef4444;
  color: var(--color-danger);
}

/* Admin Sidebar Footer */
.admin-sidebar-footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  background: #f9fafb;
  background: var(--theme-bg-color);
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--theme-card-border);
}

.admin-sidebar-footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-sidebar-footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  background: #ea580c;
  background: var(--color-warning);
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: #ffffff;
}

.admin-sidebar-footer-divider {
  width: 1px;
  height: 16px;
  background: #e5e7eb;
  background: var(--theme-card-border);
}

.admin-sidebar-footer-text {
  display: block;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #1f2937;
  color: var(--theme-text-color);
  font-weight: 500;
}

.admin-sidebar-footer-text--small {
  margin-top: 4px;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  color: #6b7280;
  color: var(--color-text-muted);
}

/* Scrollbar styling for admin sidebar */
.admin-sidebar-scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.admin-sidebar-scroll::-webkit-scrollbar {
  width: 6px;
}

.admin-sidebar-scroll::-webkit-scrollbar-track {
  background: #f9fafb;
  background: var(--theme-bg-color);
}

.admin-sidebar-scroll::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  background: var(--theme-card-border);
  border-radius: 3px;
}

.admin-sidebar-scroll::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
  background: var(--color-text-muted);
}

/* ==================== ICON VISIBILITY FIXES ==================== */

/* Profile Avatar - Use gradient or lighter background */
.profile-avatar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.profile-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Section Heading Icons - Ensure visibility */
.section-heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
}

.section-heading-icon svg {
  color: #ffffff !important;
  width: 20px;
  height: 20px;
}

/* Alternative: Outlined style for section icons */
.section-heading-icon--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  border: 2px solid #111827;
  border: 2px solid var(--theme-primary-color);
  color: #111827 !important;
  color: var(--theme-primary-color) !important;
  flex-shrink: 0;
}

.section-heading-icon--outline svg {
  color: #111827 !important;
  color: var(--theme-primary-color) !important;
  width: 20px;
  height: 20px;
}

/* Category/Product section icon with accent color */
.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.category-icon svg {
  color: #ffffff !important;
  width: 22px;
  height: 22px;
}

/* Featured section icon */
.featured-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.featured-icon svg {
  color: #ffffff !important;
  width: 22px;
  height: 22px;
}

/* ==================== SECTION HEADING ICON FIXES ==================== */

/* Primary Section Icon - Gradient background for visibility */
.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-icon svg {
  color: #ffffff !important;
  width: 22px;
  height: 22px;
}

.section-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

/* Category/Products Icon - Orange/Amber gradient */
.section-icon--category {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.section-icon--category:hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

/* Featured Icon - Green gradient */
.section-icon--featured {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.section-icon--featured:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

/* Search Results Icon - Blue gradient */
.section-icon--search {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.section-icon--search:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

/* ==================== NAVBAR BUTTON HOVER EFFECTS ==================== */

/* Base nav button styles */
.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: transparent;
  color: #6b7280;
  color: var(--color-text-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-btn:hover::before {
  transform: scaleX(1);
}

.nav-btn:hover {
  color: #111827;
  color: var(--theme-primary-color);
  transform: translateY(-1px);
}

.nav-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover::after,
.nav-btn.active::after {
  width: 70%;
}

.nav-btn.active {
  color: #111827;
  color: var(--theme-primary-color);
  font-weight: 600;
}

.nav-btn.active::before {
  transform: scaleX(1);
}

.nav-btn svg {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.nav-btn:hover svg {
  transform: scale(1.1);
}

.nav-btn--more .expand-icon {
  transition: transform 0.3s ease;
}

.nav-btn--more[aria-expanded=\"true\"] .expand-icon {
  transform: rotate(180deg);
}

/* ==================== CATEGORY FILTER BUTTON ENHANCEMENTS ==================== */

.category-btn {
  position: relative;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.category-btn:not(.category-btn--active) {
  background: transparent;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--color-surface-border);
  color: #6b7280;
  color: var(--color-text-muted);
}

.category-btn:not(.category-btn--active):hover {
  border-color: #111827;
  border-color: var(--theme-primary-color);
  color: #111827;
  color: var(--theme-primary-color);
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-btn--active {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: 1px solid transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.category-btn--active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

/* ==================== LOGOUT BUTTON ENHANCEMENT ==================== */

.logout-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}

.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

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

.logout-btn svg {
  transition: transform 0.2s ease;
}

.logout-btn:hover svg {
  transform: translateX(2px);
}

/* ==================== ADD TO CART BUTTON STYLES ==================== */

/* Primary Add to Cart Button - Success Green Theme */
.btn-add-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
  color: #ffffff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.025em;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

/* Shine effect on hover */
.btn-add-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-add-cart:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Cart icon animation */
.btn-add-cart svg,
.btn-add-cart .MuiSvgIcon-root {
  color: #ffffff !important;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-add-cart:hover svg,
.btn-add-cart:hover .MuiSvgIcon-root {
  transform: scale(1.2) rotate(-10deg);
}

/* ==================== PREMIUM INQUIRY BUTTON (FOR HOMEPAGE) ==================== */
/* Ensures a stable visible border while inner sliding panel animates */
.premium-inquiry-btn {
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border-radius: var(--radius-md);
  border: 2px solid #3b82f6 !important;
  border: 2px solid var(--color-info) !important;
  color: #3b82f6 !important;
  color: var(--color-info) !important;
  background: transparent !important;
  z-index: 0;
  transition:
    color 0.32s ease,
    border-color 0.32s ease;
}

.premium-inquiry-btn::before {
  /* sliding inner fill panel kept inside border */
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 100%;
  right: 2px;
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #2563eb 100%
  );
  background: linear-gradient(
    90deg,
    var(--color-info) 0%,
    var(--color-info-strong) 100%
  );
  border-radius: calc(8px - 2px);
  border-radius: calc(var(--radius-md) - 2px);
  z-index: 0; /* keep below overlay border */
  transition: left 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-inquiry-btn::after {
  /* overlay border that remains visible above sliding panel */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border-radius: var(--radius-md);
  border: 2px solid #3b82f6;
  border: 2px solid var(--color-info);
  z-index: 3;
  pointer-events: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.premium-inquiry-btn .MuiButton-startIcon,
.premium-inquiry-btn .MuiButton-label {
  position: relative;
  z-index: 4; /* above sliding panel and overlay */
  transition:
    transform 0.28s ease,
    color 0.28s ease;
}

.premium-inquiry-btn:hover,
.premium-inquiry-btn:focus {
  color: #ffffff !important;
  border-color: #2563eb !important;
  border-color: var(--color-info-strong) !important;
}

.premium-inquiry-btn:hover::before,
.premium-inquiry-btn:focus::before {
  left: 2px; /* slide inner panel while keeping outer border visible */
}

.premium-inquiry-btn:hover::after,
.premium-inquiry-btn:focus::after {
  border-color: #2563eb;
  border-color: var(--color-info-strong);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
}

/* Higher specificity to override MUI default styles if needed */
.premium-inquiry-btn.MuiButton-root {
  border: 2px solid #3b82f6 !important;
  border: 2px solid var(--color-info) !important;
  background: transparent !important;
  overflow: visible !important;
}

.premium-inquiry-btn.MuiButton-root::after {
  border: 2px solid #3b82f6 !important;
  border: 2px solid var(--color-info) !important;
}

@media (prefers-reduced-motion: reduce) {
  .premium-inquiry-btn::before,
  .premium-inquiry-btn .MuiButton-startIcon,
  .premium-inquiry-btn .MuiButton-label {
    transition: none !important;
  }
}

/* Stronger enforcement: ensure icon and label stay white when the inner panel fully covers */
.premium-inquiry-btn.MuiButton-root:hover .MuiButton-label,
.premium-inquiry-btn.MuiButton-root:focus .MuiButton-label,
.premium-inquiry-btn.MuiButton-root:hover .MuiButton-startIcon svg,
.premium-inquiry-btn.MuiButton-root:focus .MuiButton-startIcon svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  z-index: 14 !important;
}

/* Ensure button text and icon become pure white on hover */
.premium-inquiry-btn:hover .MuiButton-label,
.premium-inquiry-btn:focus .MuiButton-label,
.premium-inquiry-btn:hover .MuiButton-startIcon,
.premium-inquiry-btn:focus .MuiButton-startIcon {
  color: #ffffff !important;
}

/* Ensure icon svg and label stay visible above sliding panel */
.premium-inquiry-btn .MuiButton-startIcon svg,
.premium-inquiry-btn .MuiButton-label,
.premium-inquiry-btn .MuiTypography-root {
  position: relative;
  z-index: 12 !important; /* ensure above sliding panel */
  color: inherit !important;
}

/* Stronger hover selectors to override MUI specificity */
.premium-inquiry-btn.MuiButton-root:hover,
.premium-inquiry-btn.MuiButton-root:focus,
.premium-inquiry-btn.MuiButton-root:hover span,
.premium-inquiry-btn.MuiButton-root:focus span,
.premium-inquiry-btn.MuiButton-root:hover .MuiButton-startIcon,
.premium-inquiry-btn.MuiButton-root:focus .MuiButton-startIcon,
.premium-inquiry-btn.MuiButton-root:hover .MuiButton-label,
.premium-inquiry-btn.MuiButton-root:focus .MuiButton-label,
.premium-inquiry-btn.MuiButton-root:hover .MuiTypography-root,
.premium-inquiry-btn.MuiButton-root:focus .MuiTypography-root {
  color: #ffffff !important;
  fill: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Force label/icon above any inner panels */
.premium-inquiry-btn .MuiButton-startIcon,
.premium-inquiry-btn .MuiButton-label,
.premium-inquiry-btn > span {
  z-index: 12 !important;
}

/* Add to Cart: ensure label & icon turn white when filled on hover */
.btn-add-cart:hover .MuiButton-label,
.btn-add-cart:hover .MuiSvgIcon-root,
.btn-add-cart:focus .MuiButton-label,
.btn-add-cart:focus .MuiSvgIcon-root {
  color: #ffffff !important;
}

/* Disabled state */
.btn-add-cart:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-add-cart:disabled::before {
  display: none;
}

/* ==================== ALTERNATIVE: DARK THEME ADD TO CART ==================== */

.btn-add-cart--dark {
  background: linear-gradient(
    135deg,
    #111827 0%,
    #000000 100%
  );
  background: linear-gradient(
    135deg,
    var(--theme-primary-color) 0%,
    #000000 100%
  );
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.25);
}

.btn-add-cart--dark:hover {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #111827 100%
  );
  background: linear-gradient(
    135deg,
    #000000 0%,
    var(--theme-primary-color) 100%
  );
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.4);
}

/* ==================== ALTERNATIVE: INFO BLUE ADD TO CART ==================== */

.btn-add-cart--blue {
  background: linear-gradient(
    135deg,
    #3b82f6 0%,
    #2563eb 100%
  );
  background: linear-gradient(
    135deg,
    var(--color-info) 0%,
    var(--color-info-strong) 100%
  );
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.btn-add-cart--blue:hover {
  background: linear-gradient(
    135deg,
    #2563eb 0%,
    #1d4ed8 100%
  );
  background: linear-gradient(
    135deg,
    var(--color-info-strong) 0%,
    #1d4ed8 100%
  );
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Ensure blue add-to-cart style has white text and icons (for plain buttons used in admin) */
.btn-add-cart--blue,
.btn-add-cart--blue * {
  color: #ffffff !important;
}
.btn-add-cart--blue svg,
.btn-add-cart--blue .MuiSvgIcon-root {
  color: #000000 !important;
  fill: #000000 !important;
}

/* Ensure default plus icon color in admin plain buttons is white when using SVG */
.table-action-btn .MuiSvgIcon-root,
.btn .MuiSvgIcon-root {
  color: inherit !important;
}

/* ==================== ALTERNATIVE: ORANGE/WARNING ADD TO CART ==================== */

.btn-add-cart--orange {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  background: linear-gradient(135deg, #f59e0b 0%, var(--color-warning) 100%);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.btn-add-cart--orange:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  background: linear-gradient(135deg, var(--color-warning) 0%, #c2410c 100%);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* ==================== OUTLINE VARIANT ==================== */

.btn-add-cart--outline {
  background: transparent;
  border: 2px solid #10b981;
  border: 2px solid var(--color-success);
  color: #10b981 !important;
  color: var(--color-success) !important;
  box-shadow: none;
}

.btn-add-cart--outline svg,
.btn-add-cart--outline .MuiSvgIcon-root {
  color: #10b981 !important;
  color: var(--color-success) !important;
}

.btn-add-cart--outline:hover {
  background: #10b981;
  background: var(--color-success);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-add-cart--outline:hover svg,
.btn-add-cart--outline:hover .MuiSvgIcon-root {
  color: #ffffff !important;
}

/* ==================== PULSE EFFECT VARIANT ==================== */

.btn-add-cart--pulse {
  animation: cart-pulse 2s infinite;
}

@keyframes cart-pulse {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
  }
  50% {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
  }
}

.btn-add-cart--pulse:hover {
  animation: none;
}

/* ==================== ICON BOUNCE ON CLICK ==================== */

@keyframes cart-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3) rotate(-15deg);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1) rotate(5deg);
  }
}

.btn-add-cart.clicked svg,
.btn-add-cart.clicked .MuiSvgIcon-root {
  animation: cart-bounce 0.5s ease;
}

/* ==================== SMALL VARIANT ==================== */

.btn-add-cart--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  border-radius: 4px;
  border-radius: var(--radius-sm);
}

.btn-add-cart--sm svg,
.btn-add-cart--sm .MuiSvgIcon-root {
  width: 16px !important;
  height: 16px !important;
}

/* ==================== LARGE VARIANT ==================== */

.btn-add-cart--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-size: var(--font-size-md);
  border-radius: 12px;
  border-radius: var(--radius-lg);
}

.btn-add-cart--lg svg,
.btn-add-cart--lg .MuiSvgIcon-root {
  width: 24px !important;
  height: 24px !important;
}

/* ==================== ICON ONLY VARIANT ==================== */

.btn-add-cart--icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 9999px;
  border-radius: var(--radius-full);
}

.btn-add-cart--icon-only svg,
.btn-add-cart--icon-only .MuiSvgIcon-root {
  width: 20px !important;
  height: 20px !important;
}

/* ==================== USER NAVBAR STYLES ==================== */

/* Navbar Container */
.user-navbar {
  background: #ffffff;
  background: var(--theme-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--theme-card-border);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-navbar.scrolled {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.95);
}

/* Navbar Toolbar */
.navbar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  min-height: 64px;
}

@media (max-width: 640px) {
  .navbar-toolbar {
    min-height: 56px;
    padding: 0 0.5rem;
  }
}

/* ==================== LOGO STYLES ==================== */

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0.5rem;
  border-radius: 8px;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.navbar-logo:hover {
  transform: scale(1.03);
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
}

.navbar-logo:active {
  transform: scale(0.98);
}

.navbar-logo-image {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border-radius: var(--radius-md);
  object-fit: contain;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-subtle);
}

.navbar-logo:hover .navbar-logo-image {
  transform: rotate(-5deg) scale(1.05);
}

.navbar-logo-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 1.5rem;
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: #111827 !important;
  color: var(--theme-primary-color) !important;
  letter-spacing: -0.025em;
  background: linear-gradient(
    135deg,
    #111827 0%,
    #374151 100%
  );
  background: linear-gradient(
    135deg,
    var(--theme-primary-color) 0%,
    #374151 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 640px) {
  .navbar-logo-text {
    display: none;
  }

  .navbar-logo-image {
    width: 36px;
    height: 36px;
  }
}

/* ==================== SEARCH BAR STYLES ==================== */

.navbar-search {
  display: flex;
  align-items: center;
  background: #f9fafb;
  background: var(--theme-bg-color);
  border: 1px solid #e5e7eb;
  border: 1px solid var(--theme-card-border);
  border-radius: 12px;
  border-radius: var(--radius-lg);
  padding: 0.5rem 1rem;
  flex: 1 1;
  max-width: 400px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.navbar-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-search:hover {
  border-color: #6b7280;
  border-color: var(--color-text-muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar-search:hover::before {
  opacity: 1;
}

.navbar-search:focus-within {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  background: #ffffff;
}

.navbar-search:focus-within::before {
  opacity: 1;
}

.navbar-search-icon {
  color: #6b7280;
  color: var(--color-text-muted);
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.navbar-search:focus-within .navbar-search-icon {
  color: #6366f1;
  transform: scale(1.1);
}

.navbar-search-input {
  flex: 1 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  color: #1f2937;
  color: var(--theme-text-color);
  position: relative;
  z-index: 1;
}

.navbar-search-input::placeholder {
  color: #6b7280;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.navbar-search:focus-within .navbar-search-input::placeholder {
  color: #9ca3af;
}

/* Search submit button (hidden by default) */
.navbar-search-submit {
  position: absolute;
  right: 8px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.navbar-search:focus-within .navbar-search-submit {
  opacity: 1;
  transform: translateX(0);
}

.navbar-search-submit:hover {
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
  .navbar-search {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .navbar-search {
    max-width: 150px;
    padding: 0.4rem 0.75rem;
  }
}

/* ==================== NAVIGATION BUTTONS ==================== */

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: transparent;
  color: #6b7280;
  color: var(--color-text-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  white-space: nowrap;
}

/* Background fill animation */
.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08) 0%,
    rgba(139, 92, 246, 0.08) 100%
  );
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Bottom underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2.5px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
  transform: scaleX(1);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  color: #111827;
  color: var(--theme-primary-color);
  transform: translateY(-2px);
}

.nav-link:active {
  transform: translateY(0);
}

/* Active state */
.nav-link.active {
  color: #111827;
  color: var(--theme-primary-color);
  font-weight: 600;
}

.nav-link.active::before {
  transform: scaleX(1);
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav link icon */
.nav-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}

.nav-link:hover .nav-link-icon {
  transform: scale(1.15) rotate(-5deg);
}

.nav-link.active .nav-link-icon {
  color: #6366f1;
}

/* Nav link text */
.nav-link-text {
  position: relative;
  z-index: 1;
}

/* ==================== MORE DROPDOWN BUTTON ==================== */

.nav-link-more {
  gap: 0.35rem;
}

.nav-link-more .expand-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.25rem;
}

.nav-link-more[aria-expanded="true"] .expand-icon {
  transform: rotate(180deg);
}

.nav-link-more:hover .expand-icon {
  color: #6366f1;
}

/* ==================== DROPDOWN MENU STYLES ==================== */

.navbar-dropdown {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border: 1px solid var(--theme-card-border) !important;
  border-radius: 12px !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  box-shadow: var(--shadow-large) !important;
  overflow: hidden;
  min-width: 220px;
  padding: 0.5rem 0;
  animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #1f2937 !important;
  color: var(--theme-text-color) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.navbar-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.navbar-dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 100%
  );
}

.navbar-dropdown-item:hover::before {
  transform: scaleY(1);
}

.navbar-dropdown-item.active {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 100%
  );
  font-weight: 600;
}

.navbar-dropdown-item.active::before {
  transform: scaleY(1);
}

.navbar-dropdown-item-icon {
  color: #6b7280;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.navbar-dropdown-item:hover .navbar-dropdown-item-icon {
  color: #6366f1;
  transform: scale(1.1);
}
.navbar-dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  background: var(--theme-card-border);
  margin: 0.5rem 0;
}

/* ==================== PROFILE SECTION ==================== */

.navbar-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Profile Avatar Button */
.navbar-avatar-btn {
  padding: 3px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-avatar-btn:hover {
  background: rgba(99, 102, 241, 0.1);
}

.navbar-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #ffffff;
  box-shadow: 0 3px 12px rgba(99, 102, 241, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-avatar:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

/* Profile Dropdown */
.navbar-profile-dropdown {
  min-width: 240px !important;
}

.navbar-profile-header {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--theme-card-border);
}

.navbar-profile-name {
  font-weight: 600;
  color: #1f2937 !important;
  color: var(--theme-text-color) !important;
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  margin-bottom: 0.25rem;
}

.navbar-profile-email {
  color: #6b7280 !important;
  color: var(--color-text-muted) !important;
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
}

/* ==================== LOGOUT BUTTON ==================== */

.navbar-logout-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Shine effect */
.navbar-logout-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s ease;
}

.navbar-logout-btn:hover::before {
  left: 100%;
}

.navbar-logout-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
}

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

.navbar-logout-btn-icon {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar-logout-btn:hover .navbar-logout-btn-icon {
  transform: translateX(3px);
}

/* Logout item in dropdown */
.navbar-dropdown-logout {
  color: #ef4444 !important;
  color: var(--color-danger) !important;
  font-weight: 600;
  margin-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--theme-card-border);
  padding-top: 0.75rem;
}

.navbar-dropdown-logout::before {
  background: linear-gradient(180deg, #ef4444, #dc2626);
}

.navbar-dropdown-logout:hover {
  background: rgba(239, 68, 68, 0.08);
}

.navbar-dropdown-logout .navbar-dropdown-item-icon {
  color: #ef4444;
  color: var(--color-danger);
}

/* ==================== MOBILE MENU BUTTON ==================== */

.navbar-mobile-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  color: #111827;
  color: var(--theme-primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-mobile-trigger:hover {
  background: rgba(99, 102, 241, 0.15);
  transform: scale(1.05);
}

.navbar-mobile-trigger:active {
  transform: scale(0.95);
}

.navbar-mobile-trigger svg {
  transition: transform 0.3s ease;
}

.navbar-mobile-trigger:hover svg {
  transform: rotate(90deg);
}

@media (max-width: 960px) {
  .navbar-mobile-trigger {
    display: flex;
  }

  .navbar-nav {
    display: none;
  }
}

/* ==================== MOBILE MENU ==================== */

.navbar-mobile-menu {
  min-width: 280px !important;
}

.navbar-mobile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--theme-card-border);
}

.navbar-mobile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.navbar-mobile-user-info {
  flex: 1 1;
}

.navbar-mobile-user-name {
  font-weight: 600;
  color: #1f2937;
  color: var(--theme-text-color);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
}

.navbar-mobile-user-email {
  color: #6b7280;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-size: var(--font-size-xs);
  margin-top: 0.125rem;
}

.navbar-mobile-nav {
  padding: 0.5rem 0;
}

.navbar-mobile-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: #1f2937;
  color: var(--theme-text-color);
  font-size: 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.navbar-mobile-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.navbar-mobile-item:hover {
  background: rgba(99, 102, 241, 0.08);
}

.navbar-mobile-item:hover::before {
  transform: scaleY(1);
}

.navbar-mobile-item.active {
  background: rgba(99, 102, 241, 0.1);
  font-weight: 600;
}

.navbar-mobile-item.active::before {
  transform: scaleY(1);
}

.navbar-mobile-item-icon {
  color: #6b7280;
  color: var(--color-text-muted);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.navbar-mobile-item:hover .navbar-mobile-item-icon {
  color: #6366f1;
  transform: scale(1.1);
}

.navbar-mobile-item.active .navbar-mobile-item-icon {
  color: #6366f1;
}

.navbar-mobile-logout {
  color: #ef4444 !important;
  color: var(--color-danger) !important;
  font-weight: 600;
  margin-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--theme-card-border);
}

.navbar-mobile-logout::before {
  background: linear-gradient(180deg, #ef4444, #dc2626);
}

.navbar-mobile-logout:hover {
  background: rgba(239, 68, 68, 0.08);
}

.navbar-mobile-logout .navbar-mobile-item-icon {
  color: #ef4444;
  color: var(--color-danger);
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */

@media (max-width: 1024px) {
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-size: var(--font-size-xs);
  }

  .navbar-logout-btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-size: var(--font-size-xs);
  }
}

@media (max-width: 768px) {
  .navbar-profile {
    gap: 0.5rem;
  }

  .navbar-avatar {
    width: 38px;
    height: 38px;
  }
}

/* ==================== SCROLL ANIMATIONS ==================== */

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-animated {
  animation: navbarSlideDown 0.4s ease-out;
}

/* ==================== CATEGORY SIDEBAR STYLES ==================== */

.category-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
  align-self: flex-start;
  flex-shrink: 0;
}

.category-sidebar-card {
  padding: 1.25rem;
  border-radius: 16px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  background: var(--theme-card-bg);
  border: 1px solid #e5e7eb;
  border: 1px solid var(--theme-card-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-soft);
  min-width: 240px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.category-sidebar-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-medium);
}

.category-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--theme-card-border);
}

.category-sidebar-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1f2937;
  color: var(--theme-text-color);
  letter-spacing: -0.025em;
}

.category-sidebar-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Category Button Styles */
.category-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-family: var(--font-family-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2937;
  color: var(--theme-text-color);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.category-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  transform: translateX(4px);
}

.category-btn--active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
}

.category-btn--active:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

.category-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border-radius: var(--radius-md);
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.category-btn--active .category-btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

.category-btn-icon svg {
  font-size: 1.25rem;
  color: #3b82f6;
  color: var(--color-info);
}

.category-btn--active .category-btn-icon svg {
  color: #ffffff;
}

.category-btn-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 0.5rem;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  font-size: 0.75rem;
  font-weight: 600;
  color: #3b82f6;
  color: var(--color-info);
  margin-left: auto;
}

.category-btn--active .category-btn-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Mobile Category Filter Button - Enhanced Top-Right Positioning */
.category-mobile-fab {
  position: fixed;
  top: calc(80px + 20px);
  top: calc(var(--header-height, 80px) + 20px);
  right: max(20px, env(safe-area-inset-right, 20px));
  z-index: 1350;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* Responsive positioning for all device sizes */
@media (max-width: 375px) {
  .category-mobile-fab {
    right: max(16px, env(safe-area-inset-right, 16px));
    top: calc(72px + 16px);
    top: calc(var(--header-height, 72px) + 16px);
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .category-mobile-fab {
    right: max(18px, env(safe-area-inset-right, 18px));
    top: calc(76px + 18px);
    top: calc(var(--header-height, 76px) + 18px);
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  .category-mobile-fab {
    right: max(24px, env(safe-area-inset-right, 24px));
    top: calc(88px + 24px);
    top: calc(var(--header-height, 88px) + 24px);
  }
}

/* Enhanced hover and interaction effects */
.category-mobile-fab:hover {
  transform: translateY(-3px) scale(1.05);
}

.category-mobile-fab:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.15s ease;
}

/* Enhanced pulse animation for active filters */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.filter-fab-pulse {
  animation: pulse 2s infinite;
}

/* Sidebar Footer */
.category-sidebar-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--theme-card-border);
  text-align: center;
}

.category-sidebar-footer-text {
  font-size: 0.7rem;
  color: #6b7280;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */

@media (max-width: 1200px) {
  .category-sidebar-card {
    min-width: 220px;
  }
}

@media (max-width: 960px) {
  .category-sidebar {
    display: none;
  }

  .category-mobile-fab {
    display: flex;
  }
}

@media (min-width: 961px) {
  .category-mobile-fab {
    display: none;
  }
}

/* ==================== CATEGORY SIDEBAR STYLES ==================== */

.category-sidebar-container {
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
  align-self: flex-start;
  flex-shrink: 0;
}

/* Mobile Filter FAB Animation */
@keyframes filterPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.6);
  }
}

.filter-fab-pulse {
  animation: filterPulse 2s infinite;
}

/* Category Button Active Indicator */
.category-btn-active-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 0 4px 4px 0;
}

/* Sidebar Scroll Behavior */
@media (min-width: 900px) {
  .products-grid-with-sidebar {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .products-grid-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 88px;
    flex-shrink: 0;
    width: 260px;
  }

  .products-grid-content {
    flex: 1 1;
    min-width: 0;
  }
}

/* Mobile Drawer Styles */
.category-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--theme-card-border);
}

.category-drawer-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1f2937;
  color: var(--theme-text-color);
}

/* Filter Badge Animation */
@keyframes badgePop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.filter-badge-animate {
  animation: badgePop 0.3s ease-out;
}

/* Category Count Badge */
.category-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 0.5rem;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-count-badge--active {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.category-count-badge--inactive {
  background: rgba(17, 24, 39, 0.05);
  background: var(--color-primary-soft);
  color: #3b82f6;
  color: var(--color-info);
}

/* Responsive Grid Adjustments with Sidebar */
@media (min-width: 900px) and (max-width: 1200px) {
  .products-grid-sidebar {
    width: 220px;
  }
}

@media (max-width: 899px) {
  .products-grid-sidebar {
    display: none;
  }

  .mobile-filter-fab {
    display: flex;
  }
}

@media (min-width: 900px) {
  .mobile-filter-fab {
    display: none;
  }
}

/* ================================================
   MANAGEMENT PAGES - Common Styles (Missing)
   ================================================ */

/* Page Layout */
.management-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  padding-top: 80px;
}

.management-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.management-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.management-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.management-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
}

.management-title-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.management-subtitle {
  margin: 0;
  margin-left: 60px;
  color: #6b7280;
  font-size: 0.875rem;
}

/* ================================================
   FILTER CARD STYLES
   ================================================ */

.filter-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.filter-search {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .filter-search {
    grid-column: span 1;
  }
}

.filter-item {
  min-width: 0;
}

.filter-summary {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.filter-badge {
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-badge-active {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #166534;
}

.filter-badge-inactive {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.btn-clear-filters {
  color: #3b82f6 !important;
}

.btn-clear-filters:hover {
  color: #2563eb !important;
  text-decoration: underline;
}

/* ================================================
   TABLE ENHANCEMENTS
   ================================================ */

.table-row-hover:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Category Avatar */
.category-avatar {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Slug Badge */
.slug-badge {
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #93c5fd;
  font-family: "SF Mono", "Fira Code", monospace;
}

/* Keywords */
.keywords-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  max-width: 200px;
}

.no-keywords {
  color: #9ca3af;
  font-size: 0.75rem;
  font-style: italic;
}

.keyword-badge {
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #166534;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #a7f3d0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.keyword-badge-more {
  padding: 0.25rem 0.5rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #d1d5db;
}

/* Product Count */
.product-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-count-badge {
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #f59e0b;
  min-width: 45px;
  text-align: center;
}

.product-count-label {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Status Cell */
.status-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ================================================
   TOGGLE SWITCH
   ================================================ */

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.toggle-label {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

/* ================================================
   MODAL/DIALOG
   ================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.modal-close-btn {
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  color: #6b7280;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.modal-content {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1 1;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

/* ================================================
   FORM GRID
   ================================================ */

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

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-group-full {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .form-group-full {
    grid-column: span 1;
  }
}

.required {
  color: #ef4444;
}

/* Keyword Input */
.keyword-input-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.keyword-input-row .input-glass {
  flex: 1 1;
}

.keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #93c5fd;
}

.keyword-chip-remove {
  background: none;
  border: none;
  color: #1e40af;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.keyword-chip-remove:hover {
  opacity: 1;
}

/* ================================================
   LOADING SPINNER & EMPTY STATE
   ================================================ */

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.empty-state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #9ca3af;
}

.empty-state-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: #374151;
}

.empty-state-description {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ================================================
   BUTTON ENHANCEMENTS
   ================================================ */

.btn-primary-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.btn-primary-gradient:hover {
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4) !important;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 768px) {
  .management-container {
    padding: 1rem;
  }

  .management-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .management-subtitle {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .filter-card {
    padding: 1rem;
  }

  .modal-container {
    margin: 0.5rem;
    max-height: 95vh;
  }

  .modal-header,
  .modal-content,
  .modal-footer {
    padding: 1rem;
  }
}

/* ==================== REUSABLE ANIMATIONS ==================== */

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

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

.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}
.animate-slide-up {
  animation: slide-up 0.4s ease-out;
}
.animate-spin {
  animation: spin 0.8s linear infinite;
}

/* ==================== RESPONSIVE UTILITIES ==================== */

@media (max-width: 640px) {
  .sm\:block {
    display: block !important;
  }
  .sm\:hidden {
    display: none !important;
  }
}

@media (min-width: 641px) {
  .sm\:block {
    display: block !important;
  }
}

/* ==================== ACCESSIBILITY ==================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible styles */
*:focus-visible {
  outline: 2px solid #3b82f6;
  outline: 2px solid var(--color-info, #3b82f6);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



/* ============================================
   PREMIUM ADDRESS SELECTION STYLES
   BuyNowPopup Component - FIXED VERSION
   ============================================ */

/* Address Loading State */
.luxe-address-loading-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 14px;
}

.luxe-address-loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #e5e7eb;
  border-top-color: #111827;
  border-radius: 50%;
  animation: luxe-spin 0.8s linear infinite;
  flex-shrink: 0;
}

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

/* ============================================
   ADDRESS BUTTON GROUP
   ============================================ */

.luxe-address-btn-group {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

/* Choose Address Button */
.luxe-address-select-btn {
  flex: 1 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.luxe-address-select-btn:hover:not(:disabled) {
  border-color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.luxe-address-select-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f9fafb;
}

.luxe-address-select-btn.has-selection {
  border-color: #10b981;
  background: #f0fdf4;
}

/* Address Button Icon */
.luxe-address-btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  flex-shrink: 0;
}

.luxe-address-select-btn.has-selection .luxe-address-btn-icon {
  background: #10b981;
}

.luxe-address-btn-icon .luxe-check-icon {
  font-size: 18px;
  color: #ffffff;
}

/* Address Button Content */
.luxe-address-btn-content {
  flex: 1 1;
  min-width: 0;
  overflow: hidden;
}

.luxe-address-btn-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.luxe-address-btn-subtitle {
  display: block;
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.luxe-address-btn-arrow {
  color: #9ca3af;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.luxe-address-select-btn:hover:not(:disabled) .luxe-address-btn-arrow {
  transform: translateX(2px);
  color: #111827;
}

/* Add New Address Button */
.luxe-address-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.luxe-address-add-btn:hover {
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   DELIVERY ADDRESS CARD (Selected Display)
   ============================================ */

.luxe-delivery-address-card {
  background: #f0fdf4;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 10px;
}

.luxe-delivery-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.luxe-delivery-type {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
}

.luxe-delivery-type svg {
  font-size: 14px;
}

.luxe-default-tag {
  background: #10b981;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.luxe-delivery-address-text {
  color: #166534;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   NO ADDRESS STATE
   ============================================ */

.luxe-no-address-box {
  background: #fffbeb;
  border: 1px dashed #f59e0b;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.luxe-no-address-icon {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}

.luxe-no-address-box p {
  color: #92400e;
  font-size: 13px;
  margin: 0 0 14px 0;
}

.luxe-no-address-box .luxe-form-textarea {
  text-align: left;
}

/* ============================================
   ADDRESS SELECTION MODAL
   ============================================ */

.luxe-address-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
}

.luxe-address-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 480px;
  max-height: calc(100vh - 80px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Modal Header */
.luxe-address-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #111827;
  color: #ffffff;
  flex-shrink: 0;
}

.luxe-address-modal-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.luxe-address-modal-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 18px;
  color: #ffffff;
}

.luxe-address-modal-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: #ffffff !important;
}

.luxe-address-modal-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0;
}

.luxe-address-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.luxe-address-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Modal Body */
.luxe-address-modal-body {
  flex: 1 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.luxe-address-modal-body::-webkit-scrollbar {
  width: 4px;
}

.luxe-address-modal-body::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.luxe-address-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

/* ============================================
   ADDRESS OPTION CARD
   ============================================ */

.luxe-address-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.luxe-address-option:hover {
  border-color: #9ca3af;
  background: #fafafa;
}

.luxe-address-option.selected {
  border-color: #10b981;
  background: #f0fdf4;
}

/* Radio Button */
.luxe-address-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.luxe-address-radio.checked {
  border-color: #10b981;
  background: #10b981;
  color: #ffffff;
}

.luxe-address-radio.checked svg {
  font-size: 12px;
}

/* Address Option Content */
.luxe-address-option-content {
  flex: 1 1;
  min-width: 0;
}

.luxe-address-option-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.luxe-address-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #111827;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.luxe-address-type-badge svg {
  font-size: 10px;
}

.luxe-address-default-pill {
  background: #dbeafe;
  color: #1e40af;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.luxe-address-option-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}

.luxe-address-option-line {
  font-size: 12px;
  color: #374151;
  margin: 0 0 2px 0;
  line-height: 1.4;
}

.luxe-address-option-city {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.luxe-address-option-landmark {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9ca3af;
  margin: 6px 0 0 0;
}

.luxe-address-option-landmark svg {
  color: #f59e0b;
  font-size: 10px;
}

/* Selected Badge */
.luxe-address-selected-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #10b981;
  font-size: 20px;
}

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

.luxe-address-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.luxe-address-modal-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.luxe-address-modal-add-btn:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.luxe-address-modal-done-btn {
  padding: 10px 24px;
  background: #111827;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.luxe-address-modal-done-btn:hover {
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   EMPTY STATE IN MODAL
   ============================================ */

.luxe-address-modal-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.luxe-address-modal-empty-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  margin-bottom: 16px;
  font-size: 28px;
}

.luxe-address-modal-empty-title {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 6px 0;
}

.luxe-address-modal-empty-text {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 20px 0;
  max-width: 240px;
}

.luxe-address-modal-empty-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: #111827;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.luxe-address-modal-empty-btn:hover {
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 480px) {
  .luxe-address-btn-group {
    flex-direction: column;
    gap: 8px;
  }

  .luxe-address-add-btn {
    width: 100%;
    padding: 12px 16px;
  }

  .luxe-address-select-btn {
    padding: 10px 12px;
  }

  .luxe-address-btn-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Mobile Modal - Bottom Sheet Style */
  .luxe-address-modal {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }

  .luxe-address-modal-header {
    padding: 16px;
  }

  .luxe-address-modal-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .luxe-address-modal-title {
    font-size: 15px;
  }

  .luxe-address-modal-close {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .luxe-address-modal-body {
    padding: 12px;
    max-height: 45vh;
  }

  .luxe-address-option {
    padding: 12px;
  }

  .luxe-address-radio {
    width: 18px;
    height: 18px;
  }

  .luxe-address-type-badge {
    font-size: 9px;
    padding: 2px 6px;
  }

  .luxe-address-option-name {
    font-size: 12px;
  }

  .luxe-address-option-line,
  .luxe-address-option-city {
    font-size: 11px;
  }

  .luxe-address-selected-badge {
    font-size: 18px;
    top: 8px;
    right: 8px;
  }

  .luxe-address-modal-footer {
    flex-direction: column;
    padding: 14px 16px 20px;
    gap: 8px;
  }

  .luxe-address-modal-add-btn,
  .luxe-address-modal-done-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .luxe-address-modal-done-btn {
    order: -1;
  }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .luxe-address-modal {
    max-width: 420px;
  }
}

/* ============================================
   OVERRIDE FIXES - Ensure consistency
   ============================================ */

/* Fix any color bleeding from parent */
.luxe-address-modal *,
.luxe-address-modal-backdrop {
  box-sizing: border-box;
}

/* Ensure modal text colors are correct */
.luxe-address-modal-header *:not(button) {
  color: #ffffff !important;
}

.luxe-address-modal-subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Ensure body text colors */
.luxe-address-option-name {
  color: #111827 !important;
}

.luxe-address-option-line {
  color: #374151 !important;
}

.luxe-address-option-city {
  color: #6b7280 !important;
}

/* Button text colors */
.luxe-address-add-btn,
.luxe-address-modal-done-btn,
.luxe-address-modal-empty-btn {
  color: #ffffff !important;
}

.luxe-address-modal-add-btn {
  color: #111827 !important;
}

.luxe-address-modal-add-btn:hover {
  color: #ffffff !important;
}

/* Fix z-index stacking */
.luxe-address-modal-backdrop {
  z-index: 9999;
}

.luxe-address-modal {
  z-index: 10000;
}





/* ==================== FOOTER OVERRIDE STYLES ==================== */

/* Override global text color rules for footer */
body:not(.admin-route) .site-footer,
body:not(.admin-route) .site-footer *,
body:not(.admin-route) .site-footer .MuiTypography-root,
body:not(.admin-route) .site-footer h1,
body:not(.admin-route) .site-footer h2,
body:not(.admin-route) .site-footer h3,
body:not(.admin-route) .site-footer h4,
body:not(.admin-route) .site-footer h5,
body:not(.admin-route) .site-footer h6,
body:not(.admin-route) .site-footer p,
body:not(.admin-route) .site-footer span,
body:not(.admin-route) .site-footer div,
body:not(.admin-route) .site-footer a,
body:not(.admin-route) .site-footer label {
  color: inherit !important;
}

/* Footer Base - Dark Premium Gradient using provided palette */
.site-footer {
  background: linear-gradient(135deg, #232F3E 0%, #37475A 100%);
  position: relative;
  overflow: hidden;
  color: #cbd5e1;
  padding-top: 12px;
}

/* subtle top divider using palette */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(55,71,90,0.12); /* #37475A */
  pointer-events: none;
}

/* decorative radial for depth using palette */
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35,47,62,0.06) 0%, transparent 70%); /* #232F3E */
  pointer-events: none;
}

/* Footer inner panel - subtle translucent layer using palette */
.footer-inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(35,47,62,0.04), rgba(55,71,90,0.02)); /* #232F3E -> #37475A */
  border-radius: 8px;
  padding: 28px 20px 20px 20px;
  margin-top: 12px; /* separate from above content */
}

/* Footer bottom inner band using the darkest palette color */
.footer-bottom-inner {
  background: #131A22; /* deepest accent */
  border-radius: 4px;
  padding: 12px 14px;
}

/* Ensure bottom inner is above other content and text is visible */
.footer-bottom-inner {
  position: relative;
  z-index: 50;
}

.footer-bottom-left, .footer-bottom-right {
  position: relative;
  z-index: 60;
}
/* Footer Text Colors - Dark text for light background */
.footer-text-white {
  color: #f8fafc !important;
  -webkit-text-fill-color: #f8fafc !important;
}

.footer-text-light {
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
}

.footer-text-muted {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
}

/* Footer Headings */
.footer-heading {
  color: #f8fafc !important;
  -webkit-text-fill-color: #f8fafc !important;
  font-weight: 700 !important;
  text-transform: none;
  letter-spacing: 0.4px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* Ensure footer containers don't overlap above content */
.site-footer,
.footer-inner {
  box-sizing: border-box;
}

.site-footer { padding-top: 40px; }
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
}

/* Footer Links */
.footer-link {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px);
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(19,26,34,0.25);
}

/* subtle underline on hover */
.footer-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  transition: width 0.28s ease;
  margin-top: 6px;
}

.footer-link:hover::after {
  width: 26px;
}

/* Footer Feature Cards */
.footer-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.footer-feature-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(19,26,34,0.45);
}

.footer-feature-card:hover .footer-feature-icon {
  transform: scale(1.03) rotate(2deg);
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #111827 !important;
}

.footer-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
  color: #2563eb !important;
}

.footer-feature-icon svg {
  font-size: 28px;
  color: #2563eb !important;
}

.footer-feature-title {
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-feature-desc {
  color: #64748b !important;
  -webkit-text-fill-color: #64748b !important;
  font-size: 0.9rem;
}

/* Footer Contact Cards - Redesigned without card style */
.footer-contact-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-contact-card:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.footer-contact-card:hover .footer-contact-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: scale(1.05);
  color: #ffffff !important;
}

.footer-contact-card:hover .footer-contact-icon svg {
  color: #ffffff !important;
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
  transition: all 0.28s ease;
  color: #cbd5e1 !important;
}

.footer-contact-icon svg {
  font-size: 20px;
  color: #cbd5e1 !important;
  transition: all 0.28s ease;
}

.footer-contact-title {
  color: #f8fafc !important;
  -webkit-text-fill-color: #f8fafc !important;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-contact-text {
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

.footer-contact-text:hover {
  color: #2563eb !important;
  -webkit-text-fill-color: #2563eb !important;
}

.footer-contact-subtext {
  color: #64748b !important;
  -webkit-text-fill-color: #64748b !important;
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 400;
}

/* Footer Social Icons */
.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #2563eb !important;
}

.footer-social-btn svg {
  color: #2563eb !important;
}

.footer-social-btn:hover {
  transform: translateY(-4px) scale(1.1);
}

.footer-social-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.footer-social-btn.facebook:hover svg {
  color: #ffffff !important;
}

.footer-social-btn.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.footer-social-btn.twitter:hover svg {
  color: #ffffff !important;
}

.footer-social-btn.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #E4405F;
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.footer-social-btn.instagram:hover svg {
  color: #ffffff !important;
}

.footer-social-btn.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.3);
}

.footer-social-btn.linkedin:hover svg {
  color: #ffffff !important;
}

.footer-social-btn.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.footer-social-btn.youtube:hover svg {
  color: #ffffff !important;
}

/* Footer Newsletter */
.footer-newsletter-input .MuiOutlinedInput-root {
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 12px !important;
}

.footer-newsletter-input .MuiOutlinedInput-notchedOutline {
  border-color: rgba(59, 130, 246, 0.2) !important;
  border-width: 2px !important;
}

.footer-newsletter-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
  border-color: rgba(59, 130, 246, 0.4) !important;
}

.footer-newsletter-input .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #2563eb !important;
}

.footer-newsletter-input .MuiInputBase-input {
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
}

.footer-newsletter-input .MuiInputBase-input::placeholder {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
  opacity: 1 !important;
}

.footer-newsletter-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  border-radius: 10px !important;
  min-width: 56px !important;
  box-shadow: 0 6px 18px rgba(2,6,23,0.6) !important;
}

.footer-newsletter-btn:hover {
  transform: translateY(-2px);
}

.footer-newsletter-btn svg {
  color: #FFFFFF !important;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-link {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8 !important;
  cursor: pointer;
  transition: color 0.28s ease;
  padding: 6px 10px;
}

.footer-bottom-link:hover {
  color: #ffffff !important;
}

.footer-copyright {
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
}

.footer-copyright-brand {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700;
}

/* Footer Divider */
.footer-divider {
  border-color: rgba(255,255,255,0.06) !important;
}

/* Footer bottom layout (left-right alignment) */
.footer-bottom-inner .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 768px) {
  .footer-bottom-inner .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-bottom-left {
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  font-size: 1rem;
  font-weight: 600;
}

/* ensure ALL text in footer-bottom-left is light white except brand */
.footer-bottom-left,
.footer-bottom-left * {
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  opacity: 1 !important;
}

/* ensure brand text is pure white and bold */
.footer-bottom-left .footer-copyright-brand {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 800;
}
.footer-bottom-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-right .footer-bottom-link {
  color: #ffffff !important;
  font-size: 0.88rem;
}

.footer-bottom-right .footer-text-muted {
  color: #cbd5e1 !important;
}

/* Force visibility for copyright and ensure no child is hidden */
.footer-bottom-left,
.footer-bottom-left * {
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  opacity: 1 !important;
}

/* Brand name stays pure white */
.footer-bottom-left .footer-copyright-brand {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Stronger visibility for copyright line */
.footer-bottom-left {
  text-shadow: none;
  font-size: 1rem !important;
}

.footer-bottom-inner, .footer-bottom-inner * {
  color: inherit !important;
}

/* Mobile: center only the three footer section headings and their links (keep other footer elements unchanged) */
@media (max-width: 768px) {
  .footer-inner .footer-heading {
    text-align: center !important;
    margin-left: 0 !important;
  }

  .footer-inner .footer-heading::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .footer-inner .footer-link {
    display: block !important;
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
}


/* ==================== LOGIN PAGE - MODERN MOBILE-FIRST DESIGN ==================== */

/* CSS Variables specific to Login page */
:root {
  --login-primary: #135bec;
  --login-primary-dark: #0d4bc7;
  --login-primary-light: rgba(19, 91, 236, 0.1);
  --login-primary-ring: rgba(19, 91, 236, 0.2);

  --login-bg-light: #ffffff;
  --login-bg-dark: #101622;
  --login-card-light: #ffffff;
  --login-card-dark: #1a202c;

  --login-text-primary: #000000;
  --login-text-secondary: #1a1a1a;
  --login-text-muted: #616f89;
  --login-text-dark: #ffffff;
  --login-text-muted-dark: #9ca3af;

  --login-border-light: #d1d5db;
  --login-border-dark: #374151;

  --login-success: #10b981;
  --login-success-light: #d1fae5;
  --login-error: #ef4444;
  --login-error-light: #fee2e2;

  --login-radius-sm: 0.375rem;
  --login-radius-md: 0.5rem;
  --login-radius-lg: 0.75rem;
  --login-radius-xl: 1rem;
  --login-radius-2xl: 1.25rem;
  --login-radius-full: 9999px;

  --login-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --login-shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --login-shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --login-shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --login-shadow-primary: 0 4px 14px rgba(19, 91, 236, 0.25);
}

/* ==================== MAIN CONTAINER ==================== */

.login-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #ffffff;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Background grid pattern */
.login-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(79, 79, 79, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 79, 79, 0.03) 1px, transparent 1px);
  background-size: 14px 24px;
  mask-image: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    #000 70%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    #000 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* Dark mode */
.login-page.dark {
  background: #101622;
  background: var(--login-bg-dark);
}

.login-page.dark::before {
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* ==================== CARD CONTAINER ==================== */

.login-card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  border-radius: var(--login-radius-xl);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--login-shadow-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 580px;
}

@media (max-width: 480px) {
  .login-card {
    max-width: 100%;
    min-height: calc(100dvh - 2rem);
    border-radius: 1rem;
    border-radius: var(--login-radius-xl);
  }
}

.login-page.dark .login-card {
  background: #1a202c;
  background: var(--login-card-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ==================== CARD HEADER ==================== */

.login-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f2f4;
  background: #ffffff;
}

.login-page.dark .login-card-header {
  background: #101622;
  background: var(--login-bg-dark);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.login-card-header-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.01em;
}

.login-page.dark .login-card-header-title {
  color: #ffffff;
}

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

.login-hero {
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
}

.login-hero-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1.25rem;
  border-radius: var(--login-radius-2xl);
  background: rgba(19, 91, 236, 0.1);
  background: var(--login-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #135bec;
  color: var(--login-primary);
}

.login-page.dark .login-hero-icon {
  background: rgba(19, 91, 236, 0.15);
}

.login-hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (min-width: 640px) {
  .login-hero-title {
    font-size: 1.875rem;
  }
}

.login-page.dark .login-hero-title {
  color: #ffffff;
}

.login-hero-subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #616f89;
  color: var(--login-text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.login-page.dark .login-hero-subtitle {
  color: #9ca3af;
  color: var(--login-text-muted-dark);
}

/* ==================== TAB SWITCHER ==================== */

.login-tabs {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

/* Style 1: Underline tabs (Email tab design) */
.login-tabs--underline {
  display: flex;
  border-bottom: 1px solid #f0f2f4;
}

.login-page.dark .login-tabs--underline {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.login-tab--underline {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #9ca3af;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.login-tab--underline:hover {
  color: #6b7280;
}

.login-tab--underline.active {
  color: #135bec;
  color: var(--login-primary);
  border-bottom-color: #135bec;
  border-bottom-color: var(--login-primary);
}

.login-page.dark .login-tab--underline {
  color: #6b7280;
}

.login-page.dark .login-tab--underline:hover {
  color: #9ca3af;
}

.login-page.dark .login-tab--underline.active {
  color: #ffffff;
  border-bottom-color: #135bec;
  border-bottom-color: var(--login-primary);
}

/* Style 2: Pill tabs (Phone tab design) */
.login-tabs--pill {
  display: flex;
  height: 3rem;
  padding: 0.25rem;
  border-radius: 1rem;
  border-radius: var(--login-radius-xl);
  background: #f0f2f4;
}

.login-page.dark .login-tabs--pill {
  background: #2d3748;
}

.login-tab--pill {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #616f89;
  color: var(--login-text-muted);
  background: transparent;
  border: none;
  border-radius: 0.75rem;
  border-radius: var(--login-radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.login-tab--pill:hover {
  color: #374151;
}

.login-tab--pill.active {
  background: #ffffff;
  color: #135bec;
  color: var(--login-primary);
  font-weight: 700;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--login-shadow-sm);
}

.login-page.dark .login-tab--pill:hover {
  color: #d1d5db;
}

.login-page.dark .login-tab--pill.active {
  background: #1a202c;
  background: var(--login-card-dark);
  color: #ffffff;
}

.login-tab-icon {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}

/* ==================== FORM SECTION ==================== */

.login-form {
  padding: 0 1.5rem;
  flex: 1 1;
}

.login-form-group {
  margin-bottom: 1.25rem;
}

.login-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.login-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
}

.login-page.dark .login-label {
  color: #ffffff;
}

.login-forgot-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #135bec;
  color: var(--login-primary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.login-forgot-link:hover {
  text-decoration: underline;
}

/* ==================== INPUT FIELDS ==================== */

.login-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-input {
  width: 100%;
  height: 3.25rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border-radius: var(--login-radius-lg);
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.2s ease;
}

.login-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.login-input:focus {
  outline: none;
  border-color: #135bec;
  border-color: var(--login-primary);
  box-shadow: 0 0 0 3px rgba(19, 91, 236, 0.2);
  box-shadow: 0 0 0 3px var(--login-primary-ring);
}

.login-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f9fafb;
}

.login-page.dark .login-input {
  background: #2d3748;
  border-color: #4a5568;
  color: #ffffff;
}

.login-page.dark .login-input::placeholder {
  color: #6b7280;
}

.login-page.dark .login-input:focus {
  border-color: #135bec;
  border-color: var(--login-primary);
  background: #1a202c;
}

.login-page.dark .login-input:disabled {
  background: #1f2937;
}

/* Input with left icon */
.login-input--with-left-icon {
  padding-left: 2.75rem;
}

/* Input with right icon */
.login-input--with-right-icon {
  padding-right: 2.75rem;
}

/* Input with phone prefix */
.login-input--with-prefix {
  padding-left: 4.5rem;
}

/* Input icons */
.login-input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.login-input-icon--left {
  left: 0.875rem;
}

.login-input-icon--right {
  right: 0.875rem;
}

.login-input-icon--clickable {
  pointer-events: auto;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  border-radius: 0.375rem;
  border-radius: var(--login-radius-sm);
  transition: all 0.15s ease;
  color: #9ca3af;
}

.login-input-icon--clickable:hover {
  color: #374151;
  background: #f3f4f6;
}

.login-page.dark .login-input-icon--clickable:hover {
  color: #d1d5db;
  background: #374151;
}

/* Phone prefix */
.login-phone-prefix {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 0.75rem;
  border-right: 1px solid #d1d5db;
  pointer-events: none;
  z-index: 2;
}

.login-page.dark .login-phone-prefix {
  border-right-color: #4a5568;
}

.login-phone-prefix-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
}

.login-page.dark .login-phone-prefix-text {
  color: #ffffff;
}

/* ==================== OTP INPUT ==================== */

.login-otp-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-otp-inputs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.login-otp-input {
  width: 2.75rem;
  height: 3.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border-radius: var(--login-radius-lg);
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #000000;
  font-family: inherit;
  transition: all 0.2s ease;
}

.login-otp-input:focus {
  outline: none;
  border-color: #135bec;
  border-color: var(--login-primary);
  box-shadow: 0 0 0 3px rgba(19, 91, 236, 0.2);
  box-shadow: 0 0 0 3px var(--login-primary-ring);
}

.login-otp-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-page.dark .login-otp-input {
  background: #2d3748;
  border-color: #4a5568;
  color: #ffffff;
}

/* Single OTP text field (alternative) */
.login-otp-single {
  letter-spacing: 0.5em;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

/* ==================== BUTTONS ==================== */

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3.25rem;
  border-radius: 1rem;
  border-radius: var(--login-radius-xl);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.login-btn--primary {
  background: #135bec;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(19, 91, 236, 0.2);
}

.login-btn--primary:hover:not(:disabled) {
  background: #0d4bc7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(19, 91, 236, 0.3);
}

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

.login-btn--secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #d1d5db;
}

.login-btn--secondary:hover:not(:disabled) {
  background: #f3f4f6;
}

.login-page.dark .login-btn--secondary {
  background: transparent;
  color: #d1d5db;
  border-color: #4a5568;
}

.login-page.dark .login-btn--secondary:hover:not(:disabled) {
  background: #374151;
}

.login-btn--outline {
  background: transparent;
  color: #135bec;
  border: 1px solid #135bec;
}

.login-btn--outline:hover:not(:disabled) {
  background: rgba(19, 91, 236, 0.05);
}

.login-btn-icon {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}

/* Button group */
.login-btn-group {
  display: flex;
  gap: 0.75rem;
}

.login-btn-group .login-btn {
  flex: 1 1;
}

/* Loading spinner */
.login-btn-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: login-spin 0.8s linear infinite;
}

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

/* ==================== ALERTS ==================== */

.login-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border-radius: var(--login-radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.login-alert-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.login-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.login-page.dark .login-alert--error {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.2);
}

.login-alert--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.login-page.dark .login-alert--success {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.2);
}

/* ==================== RESEND / HELPER TEXT ==================== */

.login-helper-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.login-helper-text {
  font-size: 0.875rem;
  color: #616f89;
  color: var(--login-text-muted);
}

.login-page.dark .login-helper-text {
  color: #9ca3af;
  color: var(--login-text-muted-dark);
}

.login-resend-btn {
  font-size: 0.875rem;
  font-weight: 700;
  color: #135bec;
  color: var(--login-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.login-resend-btn:hover:not(:disabled) {
  text-decoration: underline;
}

.login-resend-btn:disabled {
  color: #9ca3af;
  cursor: not-allowed;
}

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

.login-footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f2f4;
  background: #fafafa;
  text-align: center;
  margin-top: auto;
}

.login-page.dark .login-footer {
  border-top-color: rgba(255, 255, 255, 0.06);
  background: rgba(26, 32, 44, 0.5);
}

.login-footer-text {
  font-size: 0.875rem;
  color: #616f89;
  color: var(--login-text-muted);
}

.login-page.dark .login-footer-text {
  color: #9ca3af;
  color: var(--login-text-muted-dark);
}

.login-footer-link {
  color: #135bec;
  color: var(--login-primary);
  font-weight: 700;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  margin-left: 0.25rem;
}

.login-footer-link:hover {
  text-decoration: underline;
}

.login-footer-link:focus {
  outline: 2px solid #135bec;
  outline: 2px solid var(--login-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Support link */
.login-support {
  text-align: center;
  margin-top: 1.5rem;
}

.login-support-text {
  font-size: 0.75rem;
  color: #9ca3af;
}

.login-support-link {
  color: #135bec;
  color: var(--login-primary);
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}

.login-support-link:hover {
  text-decoration: underline;
}

/* ==================== ACTION SECTION ==================== */

.login-actions {
  padding: 1.5rem;
  padding-top: 2rem;
}

/* ==================== DIVIDER ==================== */

.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.login-divider-line {
  flex: 1 1;
  height: 1px;
  background: #e5e7eb;
}

.login-page.dark .login-divider-line {
  background: #374151;
}

.login-divider-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== ANIMATIONS ==================== */

@keyframes login-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes login-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-animate-fade-in {
  animation: login-fade-in 0.3s ease-out;
}

.login-animate-slide-up {
  animation: login-slide-up 0.4s ease-out;
}

/* Staggered animation delays */
.login-animate-delay-1 {
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.login-animate-delay-2 {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.login-animate-delay-3 {
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

/* ==================== FOCUS & ACCESSIBILITY ==================== */

.login-input:focus-visible,
.login-otp-input:focus-visible,
.login-btn:focus-visible,
.login-tab--underline:focus-visible,
.login-tab--pill:focus-visible,
.login-input-icon--clickable:focus-visible,
.login-resend-btn:focus-visible,
.login-forgot-link:focus-visible {
  outline: 2px solid #135bec;
  outline-offset: 2px;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 380px) {
  .login-hero-title {
    font-size: 1.5rem;
  }

  .login-hero-subtitle {
    font-size: 0.875rem;
  }

  .login-otp-input {
    width: 2.5rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}

/* ==================== REDUCED MOTION ==================== */

@media (prefers-reduced-motion: reduce) {
  .login-btn,
  .login-input,
  .login-otp-input,
  .login-tab--underline,
  .login-tab--pill,
  .login-input-icon--clickable {
    transition: none !important;
  }

  .login-animate-fade-in,
  .login-animate-slide-up {
    animation: none !important;
  }

  .login-btn-spinner {
    animation-duration: 1.5s;
  }
}

/* ==================== REGISTER PAGE - MODERN MOBILE-FIRST DESIGN ==================== */

/* CSS Variables specific to Register page */
:root {
  --register-primary: #135bec;
  --register-primary-dark: #0d4bc7;
  --register-primary-light: rgba(19, 91, 236, 0.1);
  --register-primary-ring: rgba(19, 91, 236, 0.2);

  --register-bg-light: #ffffff;
  --register-bg-dark: #101622;
  --register-card-light: #ffffff;
  --register-card-dark: #1a202c;

  --register-text-primary: #000000;
  --register-text-secondary: #1a1a1a;
  --register-text-dark: #ffffff;
  --register-text-muted-dark: #9ca3af;

  --register-border-light: #d1d5db;
  --register-border-dark: #374151;

  --register-success: #10b981;
  --register-success-light: #d1fae5;
  --register-error: #ef4444;
  --register-error-light: #fee2e2;

  --register-radius-sm: 0.375rem;
  --register-radius-md: 0.5rem;
  --register-radius-lg: 0.75rem;
  --register-radius-xl: 1rem;
  --register-radius-full: 9999px;

  --register-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --register-shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --register-shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --register-shadow-primary: 0 4px 14px rgba(19, 91, 236, 0.25);
}

/* ==================== MAIN CONTAINER ==================== */

.register-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  background: #ffffff;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  overflow-x: hidden;
}

@media (min-width: 640px) {
  .register-page {
    padding: 1.5rem;
    justify-content: center;
  }
}

/* Dark mode */
.register-page.dark {
  background: #101622;
  background: var(--register-bg-dark);
}

/* ==================== CARD CONTAINER ==================== */

.register-card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1rem;
  border-radius: var(--register-radius-xl);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--register-shadow-sm);
  overflow: hidden;
  min-height: calc(100dvh - 2rem);
}

@media (min-width: 640px) {
  .register-card {
    min-height: auto;
    max-height: 90dvh;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--register-shadow-lg);
  }
}

.register-page.dark .register-card {
  background: #1a202c;
  background: var(--register-card-dark);
}

/* ==================== HEADER / STEPPER ==================== */

.register-header {
  padding: 2rem 1.5rem 0.5rem;
  flex-shrink: 0;
}

/* Stepper Styles */
.register-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.register-step {
  display: flex;
  align-items: center;
}

.register-step-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border-radius: var(--register-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.register-step-circle--completed {
  background: #135bec;
  color: #ffffff;
}

.register-step-circle--active {
  background: #135bec;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(19, 91, 236, 0.2);
  box-shadow: 0 0 0 4px var(--register-primary-ring);
  position: relative;
}

.register-step-label {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 500;
  color: #135bec;
  white-space: nowrap;
}

.register-step-circle--pending {
  background: #e5e7eb;
  color: #000000;
}

.register-page.dark .register-step-circle--pending {
  background: #374151;
  background: var(--register-border-dark);
  color: #9ca3af;
  color: var(--register-text-muted-dark);
}

.register-connector {
  width: 3rem;
  height: 2px;
  background: #135bec;
  transition: all 0.3s ease;
}

.register-connector--inactive {
  background: #d1d5db;
}

.register-page.dark .register-connector--inactive {
  background: #374151;
  background: var(--register-border-dark);
}

/* Header Text */
.register-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 640px) {
  .register-title {
    font-size: 1.875rem;
  }
}

.register-page.dark .register-title {
  color: #ffffff;
  color: var(--register-text-dark);
}

.register-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin-top: 0.5rem;
}

.register-page.dark .register-subtitle {
  color: #9ca3af;
  color: var(--register-text-muted-dark);
}

/* ==================== SCROLLABLE FORM AREA ==================== */

.register-form-container {
  flex: 1 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

/* Hide scrollbar */
.register-form-container::-webkit-scrollbar {
  display: none;
}

.register-form-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ==================== FORM FIELDS ==================== */

.register-form-group {
  margin-bottom: 1.25rem;
}

.register-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.375rem;
}

.register-page.dark .register-label {
  color: #d1d5db;
}

.register-input-wrapper {
  position: relative;
}

.register-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border-radius: var(--register-radius-lg);
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #000000;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.register-input::placeholder {
  color: #9ca3af;
}

.register-input:focus {
  outline: none;
  border-color: #135bec;
  box-shadow: 0 0 0 3px rgba(19, 91, 236, 0.2);
  box-shadow: 0 0 0 3px var(--register-primary-ring);
}

.register-page.dark .register-input {
  background: #1f2937;
  border-color: #374151;
  border-color: var(--register-border-dark);
  color: #ffffff;
  color: var(--register-text-dark);
}

.register-page.dark .register-input::placeholder {
  color: #6b7280;
}

.register-page.dark .register-input:focus {
  border-color: #135bec;
  background: #111827;
}

/* Input with icon */
.register-input--with-icon {
  padding-right: 2.5rem;
}

.register-input--with-left-icon {
  padding-left: 2.5rem;
}

.register-input-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  pointer-events: none;
}

.register-input-icon--left {
  left: 0.75rem;
  right: auto;
}

.register-input-icon--clickable {
  pointer-events: auto;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border-radius: var(--register-radius-sm);
  transition: all 0.2s ease;
  color: #000000;
}

.register-input-icon--clickable:hover {
  color: #333333;
  background: #f3f4f6;
}

.register-page.dark .register-input-icon--clickable:hover {
  color: #d1d5db;
  background: #374151;
}

/* Name fields row */
.register-name-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .register-name-row {
    flex-direction: row;
    gap: 1rem;
  }
}

.register-name-field {
  flex: 1 1;
}

/* Phone Input Specific */
.register-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.register-country-code {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  z-index: 10;
}

.register-country-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  padding-right: 0.75rem;
  border: none;
  background: transparent;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border-right: 1px solid #d1d5db;
  height: 66%;
  transition: all 0.2s ease;
}

.register-country-btn:hover {
  color: #135bec;
}

.register-page.dark .register-country-btn {
  color: #d1d5db;
  border-right-color: #374151;
  border-right-color: var(--register-border-dark);
}

.register-page.dark .register-country-btn:hover {
  color: #135bec;
}

.register-input--phone {
  padding-left: 5.5rem;
}

/* Password Strength Indicator */
.register-strength-bar {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.register-strength-segment {
  height: 0.25rem;
  flex: 1 1;
  border-radius: 9999px;
  border-radius: var(--register-radius-full);
  background: #d1d5db;
  transition: all 0.3s ease;
}

.register-page.dark .register-strength-segment {
  background: #374151;
  background: var(--register-border-dark);
}

.register-strength-segment--weak {
  background: #ef4444;
  background: var(--register-error);
}

.register-strength-segment--medium {
  background: #f59e0b;
}

.register-strength-segment--strong {
  background: #10b981;
  background: var(--register-success);
}

.register-strength-label {
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

.register-strength-label--weak {
  color: #ef4444;
  color: var(--register-error);
}

.register-strength-label--medium {
  color: #f59e0b;
}

.register-strength-label--strong {
  color: #10b981;
  color: var(--register-success);
}

/* ==================== OTP INPUT ==================== */

.register-otp-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-otp-inputs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.register-otp-input {
  width: 3rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border-radius: var(--register-radius-lg);
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #000000;
  transition: all 0.2s ease;
}

.register-otp-input:focus {
  outline: none;
  border-color: #135bec;
  box-shadow: 0 0 0 3px rgba(19, 91, 236, 0.2);
  box-shadow: 0 0 0 3px var(--register-primary-ring);
}

.register-page.dark .register-otp-input {
  background: #1f2937;
  border-color: #374151;
  border-color: var(--register-border-dark);
  color: #ffffff;
  color: var(--register-text-dark);
}

/* ==================== BUTTONS ==================== */

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  border-radius: 0.75rem;
  border-radius: var(--register-radius-lg);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.register-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.register-btn--primary {
  background: #135bec;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(19, 91, 236, 0.25);
}

.register-btn--primary:hover:not(:disabled) {
  background: #0d4bc7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(19, 91, 236, 0.35);
}

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

.register-btn--secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #d1d5db;
}

.register-btn--secondary:hover:not(:disabled) {
  background: #f3f4f6;
  color: #000000;
}

.register-page.dark .register-btn--secondary {
  background: transparent;
  color: #9ca3af;
  border-color: #374151;
  border-color: var(--register-border-dark);
}

.register-page.dark .register-btn--secondary:hover:not(:disabled) {
  background: #374151;
  color: #d1d5db;
}

.register-btn--outline {
  background: transparent;
  color: #135bec;
  border: 1px solid #135bec;
}

.register-btn--outline:hover:not(:disabled) {
  background: rgba(19, 91, 236, 0.1);
}

.register-btn--danger {
  background: #ef4444;
  background: var(--register-error);
  color: #ffffff;
}

.register-btn--danger:hover:not(:disabled) {
  background: #dc2626;
}

/* Button group */
.register-btn-group {
  display: flex;
  gap: 0.75rem;
}

.register-btn-group .register-btn {
  flex: 1 1;
}

/* Loading spinner */
.register-btn-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: register-spin 0.8s linear infinite;
}

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

/* ==================== ALERTS ==================== */

.register-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border-radius: var(--register-radius-lg);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.register-alert--error {
  background: #fee2e2;
  background: var(--register-error-light);
  color: #991b1b;
  border: 1px solid #fecaca;
}

.register-page.dark .register-alert--error {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.2);
}

.register-alert--success {
  background: #d1fae5;
  background: var(--register-success-light);
  color: #166534;
  border: 1px solid #a7f3d0;
}

.register-page.dark .register-alert--success {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.2);
}

/* ==================== DISCLAIMER ==================== */

.register-disclaimer {
  font-size: 0.75rem;
  color: #1a1a1a;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.5;
}

.register-page.dark .register-disclaimer {
  color: #9ca3af;
  color: var(--register-text-muted-dark);
}

.register-link {
  color: #135bec;
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  display: inline;
}

.register-link:hover {
  text-decoration: underline;
  color: #0d4bc7;
}

.register-link:focus {
  outline: 2px solid #135bec;
  outline-offset: 2px;
  border-radius: 2px;
}

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

.register-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  flex-shrink: 0;
}

.register-page.dark .register-footer {
  border-top-color: #374151;
  border-top-color: var(--register-border-dark);
  background: #1a202c;
  background: var(--register-card-dark);
}

.register-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==================== SUCCESS STATE ==================== */

.register-success {
  text-align: center;
  padding: 2rem 1rem;
}

.register-success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  border-radius: var(--register-radius-full);
  background: rgba(19, 91, 236, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #135bec;
}

.register-page.dark .register-success-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  color: var(--register-success);
}

.register-success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 0.5rem;
}

.register-page.dark .register-success-title {
  color: #ffffff;
  color: var(--register-text-dark);
}

.register-success-text {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.register-page.dark .register-success-text {
  color: #9ca3af;
  color: var(--register-text-muted-dark);
}

/* ==================== NAVIGATION HEADER (Mobile) ==================== */

.register-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
}

.register-nav-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border-radius: var(--register-radius-full);
  border: none;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.register-nav-back:hover {
  background: #f3f4f6;
}

.register-page.dark .register-nav-back {
  color: #ffffff;
  color: var(--register-text-dark);
}

.register-page.dark .register-nav-back:hover {
  background: #374151;
}

.register-progress {
  display: flex;
  gap: 0.5rem;
  flex: 1 1;
  justify-content: center;
}

.register-progress-bar {
  height: 0.375rem;
  width: 2rem;
  border-radius: 9999px;
  border-radius: var(--register-radius-full);
  background: #135bec;
  transition: all 0.3s ease;
}

.register-progress-bar--inactive {
  background: #d1d5db;
}

.register-page.dark .register-progress-bar--inactive {
  background: #374151;
  background: var(--register-border-dark);
}

/* ==================== UTILITY CLASSES ==================== */

.register-text-center {
  text-align: center;
}

.register-mt-4 {
  margin-top: 1rem;
}

.register-mb-4 {
  margin-bottom: 1rem;
}

.register-hidden {
  display: none;
}

/* Animation */
@keyframes register-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.register-animate-fade-in {
  animation: register-fade-in 0.3s ease-out;
}

/* Focus visible for accessibility */
.register-input:focus-visible,
.register-btn:focus-visible,
.register-country-btn:focus-visible,
.register-input-icon--clickable:focus-visible {
  outline: 2px solid #135bec;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .register-btn,
  .register-input,
  .register-step-circle,
  .register-connector,
  .register-strength-segment,
  .register-nav-back,
  .register-input-icon--clickable {
    transition: none !important;
  }

  .register-animate-fade-in {
    animation: none !important;
  }

  .register-btn-spinner {
    animation: none !important;
  }
}

/* components/product/ProductCard.css */

.product-card {
  --card-bg: #ffffff;
  --card-border: #e5e7eb;
  --card-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --card-shadow-hover:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --primary-color: #f99806;
  --primary-gradient: linear-gradient(135deg, #f99806 0%, #d48105 100%);
  --success-color: #10b981;
  --danger-color: #ef4444;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;

  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

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

/* Image Section */
.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8f9fa;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  font-size: 4rem;
}

/* Badges */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  height: 24px !important;
  border-radius: 6px !important;
}

.product-card__badge--discount {
  background: var(--danger-color) !important;
  color: white !important;
}

.product-card__badge--stock {
  background: #fef3c7 !important;
  color: #92400e !important;
  border: 1px solid #fcd34d !important;
}

/* Wishlist Button */
.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-card__wishlist svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.product-card__wishlist:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card__wishlist.active svg {
  color: var(--danger-color);
  fill: var(--danger-color);
}

/* Content Section */
.product-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1;
}

.product-card__brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card__rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: #ecfdf5;
  color: #059669;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-card__rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Price */
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-card__price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.product-card__price-original {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Actions */
.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.product-card__btn {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-transform: none !important;
  border-radius: 10px !important;
  padding: 0.625rem 1rem !important;
  transition: all 0.2s ease !important;
}

.product-card__btn--cart {
  background: var(--success-color) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.product-card__btn--cart:hover {
  background: #059669 !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
  transform: translateY(-2px);
}

.product-card__btn--inquiry {
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
}

.product-card__btn--inquiry:hover {
  background: rgba(59, 130, 246, 0.05) !important;
  border-color: #2563eb !important;
  color: #2563eb !important;
}

/* Compact Variant */
.product-card--compact .product-card__image-wrapper {
  aspect-ratio: 4 / 3;
}

.product-card--compact .product-card__content {
  padding: 1rem;
}

.product-card--compact .product-card__title {
  font-size: 0.875rem;
  -webkit-line-clamp: 1;
}

.product-card--compact .product-card__price-current {
  font-size: 1.1rem;
}

/* Loading Skeleton */
.product-card--skeleton {
  pointer-events: none;
}

.product-card--skeleton .product-card__image-wrapper {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

/* Responsive */
@media (max-width: 640px) {
  .product-card__image-wrapper {
    aspect-ratio: 4 / 3;
  }

  .product-card__content {
    padding: 1rem;
  }

  .product-card__title {
    font-size: 0.875rem;
  }

  .product-card__price-current {
    font-size: 1.1rem;
  }
}

/* components/product/ProductsGrid.css */

.products-grid {
  padding: 2rem 1rem;
  font-family: "Poppins", sans-serif;
}

.products-grid__layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* Sidebar */
.products-grid__sidebar {
  flex-shrink: 0;
}

.products-grid__sidebar--desktop {
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
  width: 260px;
  display: none;
}

@media (min-width: 1024px) {
  .products-grid__sidebar--desktop {
    display: block;
  }
}

/* Main Content */
.products-grid__main {
  flex: 1 1;
  min-width: 0;
}

/* Header */
.products-grid__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.products-grid__header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.products-grid__header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f99806 0%, #d48105 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.products-grid__header-icon svg {
  font-size: 1.5rem;
}

.products-grid__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.products-grid__subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}

/* Products List */
.products-grid__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

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

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

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

@media (min-width: 1536px) {
  .products-grid__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Loading State */
.products-grid__list--loading .product-card--skeleton {
  pointer-events: none;
}

/* Empty State */
.products-grid__empty {
  text-align: center;
  padding: 4rem 2rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
}

.products-grid__empty-icon {
  font-size: 4rem !important;
  color: #d1d5db !important;
  margin-bottom: 1rem;
}

.products-grid__empty h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem;
}

.products-grid__empty p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.products-grid__empty-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #f99806 0%, #d48105 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.products-grid__empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 152, 6, 0.3);
}

/* customer/UserDashboard.css */

.user-dashboard {
  min-height: 100vh;
  position: relative;
  padding-bottom: 2.5rem;
  font-family: "Poppins", sans-serif;
}

.user-dashboard__background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a2e;
  background: var(--theme-bg-color, #1a1a2e);
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.user-dashboard__content {
  position: relative;
  z-index: 1;
}

.user-dashboard__container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.user-dashboard__carousel-section {
  margin-bottom: 2rem;
}

.user-dashboard__section-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  color: var(--theme-text-color, #ffffff);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-dashboard__carousel-wrapper {
  background: rgba(255, 255, 255, 0.1);
  background: var(--theme-card-bg, rgba(255, 255, 255, 0.1));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border: 1px solid var(--theme-card-border, rgba(255, 255, 255, 0.15));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.user-dashboard__carousel-skeleton {
  background-color: rgba(102, 126, 234, 0.1) !important;
  background-color: var(
    --color-primary-soft,
    rgba(102, 126, 234, 0.1)
  ) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .user-dashboard__section-title {
    font-size: 1.25rem;
  }

  .user-dashboard__carousel-wrapper {
    border-radius: 12px;
  }
}

/* ProductDetails.css - Complete Responsive LUXE Theme */
/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"); */
:root {
  /* Brand Colors */
  --color-primary: #f99806;
  --color-primary-hover: #e68a00;
  --color-primary-light: rgba(249, 152, 6, 0.15);
  --color-primary-shadow: rgba(249, 152, 6, 0.4);

  /* Background */
  --bg-main: #f8f7f5;
  --bg-card: #ffffff;
  --bg-elevated: #f4efe6;
  --bg-hover: #e9dece;
  --bg-dark: #231b0f;

  /* Text */
  --text-primary: #1c160d;
  --text-secondary: #9e7b47;
  --text-muted: #6b7280;
  --text-inverse: #f8f7f5;

  /* Border */
  --border-light: #f4efe6;
  --border-medium: #e9dece;
  --border-dark: #3d3326;

  /* Status */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 20px rgba(249, 152, 6, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms ease;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

.product-detail-page {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #f8f7f5;
  background-color: var(--bg-main);
  color: #1c160d;
  color: var(--text-primary);
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

/* ==================== UTILITIES ==================== */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.luxe-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  padding: 0 var(--space-md);
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .luxe-container {
    padding: 0 1.5rem;
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .luxe-container {
    padding: 0 2.5rem;
  }
}

/* ==================== TYPOGRAPHY ==================== */
.product-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1c160d;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-bottom: var(--space-md);
  word-wrap: break-word;
}

.product-title-truncate {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  font-weight: 600;
  flex: 1 1;
  margin: 0 1rem;
  margin: 0 var(--space-md);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  min-width: 0;
}

@media (min-width: 1024px) {
  .product-title-truncate {
    text-align: left;
  }
}

/* ==================== BUTTONS ==================== */
.luxe-btn-primary,
.luxe-btn-secondary,
.luxe-btn-ghost,
.luxe-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  gap: var(--space-sm);
  border: none;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all var(--transition-base);
  font-family: inherit;
}

.luxe-btn-primary {
  padding: 1rem 2rem;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, #f99806 0%, #ff8f00 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8f00 100%);
  color: white;
  font-weight: 700;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(249, 152, 6, 0.4);
  box-shadow: var(--shadow-primary);
  flex: 1 1;
  min-width: 0;
}

.luxe-btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffb74d 0%, #f99806 100%);
  background: linear-gradient(135deg, #ffb74d 0%, var(--color-primary) 100%);
  box-shadow: 0 6px 24px rgba(249, 152, 6, 0.45);
  transform: translateY(-2px);
}

.luxe-btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.luxe-btn-secondary {
  padding: 1rem 2rem;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: #1c160d;
  color: var(--text-primary);
  font-weight: 700;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid #1c160d;
  border: 2px solid var(--text-primary);
  flex: 1 1;
  min-width: 0;
}

.luxe-btn-secondary:hover {
  background-color: #1c160d;
  background-color: var(--text-primary);
  color: #f8f7f5;
  color: var(--bg-main);
}

.luxe-btn-ghost {
  padding: 0.5rem 1rem;
  padding: var(--space-sm) var(--space-md);
  background: #f4efe6;
  background: var(--bg-elevated);
  color: #1c160d;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
}

.luxe-btn-ghost:hover {
  background: #e9dece;
  background: var(--bg-hover);
}

.luxe-btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
  background: #f4efe6;
  background: var(--bg-elevated);
  color: #1c160d;
  color: var(--text-primary);
  flex-shrink: 0;
}

.luxe-btn-icon:hover {
  background: #e9dece;
  background: var(--bg-hover);
  transform: scale(1.05);
}

.luxe-btn-icon.active {
  background: #fee2e2;
  color: #ef4444;
}

/* ==================== HEADER ==================== */
.product-header-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid #f4efe6;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
  padding: var(--space-sm) 0;
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ==================== LAYOUT ==================== */
.main-content {
  padding-top: 1.5rem;
  padding-top: var(--space-lg);
  width: 100%;
}

.product-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  gap: var(--space-xl);
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .product-layout {
    flex-direction: row;
    gap: 3rem;
  }
}

.gallery-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .gallery-section {
    flex: 0 0 42%;
    max-width: 42%;
  }

  .gallery-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
  }
}

.gallery-sticky img,
.product-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.info-section {
  flex: 1 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  gap: var(--space-xl);
  width: 100%;
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: #6b7280;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: #6b7280;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 150ms ease;
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: #f99806;
  color: var(--color-primary);
}

.breadcrumbs .current {
  color: #1c160d;
  color: var(--text-primary);
  font-weight: 600;
}

/* ==================== BADGES ==================== */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  gap: var(--space-sm);
}

.luxe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  padding: 0.25rem 0.5rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 9999px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.luxe-badge-primary {
  background: rgba(249, 152, 6, 0.15);
  background: var(--color-primary-light);
  color: #f99806;
  color: var(--color-primary);
  border: 1px solid rgba(249, 152, 6, 0.3);
}

.luxe-badge-sale {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #000;
}

.luxe-badge-new {
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
  color: white;
}

.luxe-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  padding: 0.25rem 0.5rem;
  padding: var(--space-xs) var(--space-sm);
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  color: white;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
}

/* ==================== PRICE BLOCK ==================== */
.luxe-price-block {
  padding: 1.5rem;
  padding: var(--space-lg);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  border-radius: 1rem;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  margin-bottom: var(--space-sm);
  width: 100%;
}

.luxe-price-large {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #1c160d;
  color: var(--text-primary);
  line-height: 1;
}

.luxe-price-original {
  font-size: 1.125rem;
  color: #9e7b47;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.luxe-savings {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-top: var(--space-sm);
}

.tax-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  margin-top: 0.5rem;
  margin-top: var(--space-sm);
  color: #6b7280;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ==================== RATING ==================== */
.luxe-rating-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  gap: var(--space-md);
  background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
  border: 1px solid #fde047;
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
}

.luxe-rating-score {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.luxe-rating-text {
  font-weight: 600;
  color: #1c160d;
  color: var(--text-primary);
}

.luxe-rating-subtext {
  color: #6b7280;
  color: var(--text-muted);
}

/* ==================== STOCK ==================== */
.stock-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  gap: var(--space-lg);
  width: 100%;
}

.stock-status-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  padding: 0.25rem 0.5rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 9999px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

.stock-badge.in {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  color: white;
}

.stock-badge.low {
  background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
  color: white;
}

.stock-badge.out {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  color: white;
}

.urgency-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  color: #f59e0b;
  color: var(--color-warning);
  font-size: 0.85rem;
  font-weight: 600;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.quantity-label {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ==================== QUANTITY SELECTOR ==================== */
.luxe-quantity-selector {
  display: inline-flex;
  align-items: center;
  background: #f4efe6;
  background: var(--bg-elevated);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid #f4efe6;
  border: 2px solid var(--border-light);
  overflow: hidden;
}

.luxe-quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #1c160d;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 150ms ease;
  transition: background var(--transition-fast);
}

.luxe-quantity-btn:hover:not(:disabled) {
  background: #ffffff;
  background: var(--bg-card);
}

.luxe-quantity-btn:disabled {
  color: #6b7280;
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.5;
}

.luxe-quantity-value {
  text-align: center;
  font-weight: 700;
  color: #1c160d;
  color: var(--text-primary);
  border-left: 2px solid #f4efe6;
  border-left: 2px solid var(--border-light);
  border-right: 2px solid #f4efe6;
  border-right: 2px solid var(--border-light);
  padding: 0.5rem 1rem;
  padding: var(--space-sm) var(--space-md);
  min-width: 3rem;
}

/* ==================== CARDS ==================== */
.luxe-card {
  background: #ffffff;
  background: var(--bg-card);
  border-radius: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.luxe-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
}

/* Product Description */
.product-description .description-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  gap: var(--space-md);
  padding: 1.5rem 2rem;
  padding: var(--space-lg) var(--space-xl);
  background: #f4efe6;
  background: var(--bg-elevated);
  border-bottom: 1px solid #f4efe6;
  border-bottom: 1px solid var(--border-light);
}

.product-description .description-header h3 {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 700;
  color: #1c160d;
  color: var(--text-primary);
}

.description-content {
  padding: 1.5rem 2rem;
  padding: var(--space-lg) var(--space-xl);
}

.description-text {
  color: #9e7b47;
  color: var(--text-secondary);
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  line-height: 1.8;
  text-align: justify;
  word-wrap: break-word;
}

.read-more-btn {
  margin-top: 1rem;
  margin-top: var(--space-md);
  color: #f99806;
  color: var(--color-primary);
  background: rgba(249, 152, 6, 0.1);
  border: 1px solid rgba(249, 152, 6, 0.3);
}

/* ==================== ACCORDION & TABS ==================== */
.luxe-accordion {
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
}

.luxe-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f4efe6 100%
  );
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--bg-elevated) 100%
  );
  cursor: pointer;
  transition: all 150ms ease;
  transition: all var(--transition-fast);
}

.luxe-accordion-header:hover {
  background: linear-gradient(
    135deg,
    #f4efe6 0%,
    #e9dece 100%
  );
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    var(--bg-hover) 100%
  );
}

.luxe-accordion-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  gap: var(--space-sm);
  font-weight: 700;
  color: #1c160d;
  color: var(--text-primary);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.luxe-tab-pills {
  display: flex;
  gap: 0.5rem;
  gap: var(--space-sm);
  overflow-x: auto;
  padding: 1rem;
  padding: var(--space-md);
  background: linear-gradient(
    135deg,
    #f4efe6 0%,
    #f8f7f5 100%
  );
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    var(--bg-main) 100%
  );
  border-bottom: 1px solid #f4efe6;
  border-bottom: 1px solid var(--border-light);
}

.luxe-tab-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  padding: var(--space-sm) var(--space-md);
  background: #ffffff;
  background: var(--bg-card);
  border: 2px solid #f4efe6;
  border: 2px solid var(--border-light);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  color: #9e7b47;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 150ms ease;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.luxe-tab-pill:hover {
  background: #e9dece;
  background: var(--bg-hover);
  border-color: #e9dece;
  border-color: var(--border-medium);
  color: #1c160d;
  color: var(--text-primary);
  transform: translateY(-1px);
}

.luxe-tab-pill.active {
  background: linear-gradient(135deg, #f99806 0%, #ff8f00 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8f00 100%);
  color: white;
  border-color: #f99806;
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(249, 152, 6, 0.4);
  box-shadow: var(--shadow-primary);
}

.luxe-tab-pill span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}

.luxe-tab-pill.active span:first-child {
  background: rgba(255, 255, 255, 0.2);
}

.luxe-tab-content {
  background: #f8f7f5;
  background: var(--bg-main);
  min-height: 200px;
  width: 100%;
  max-width: 100%;
}

/* ==================== FEATURE LISTS ==================== */
.luxe-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-md);
}

.luxe-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  gap: var(--space-md);
  padding: 1rem;
  padding: var(--space-md);
  background: #ffffff;
  background: var(--bg-card);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
  transition: all 150ms ease;
  transition: all var(--transition-fast);
  width: 100%;
  max-width: 100%;
}

.luxe-feature-item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  border-color: #e9dece;
  border-color: var(--border-medium);
}

.luxe-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f99806 0%, #ff8f00 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8f00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.luxe-feature-text {
  color: #1c160d;
  color: var(--text-primary);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  line-height: 1.5;
  flex: 1 1;
  word-wrap: break-word;
}

.luxe-feature-key {
  color: #6b7280;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.luxe-feature-value {
  color: #1c160d;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.5;
  word-wrap: break-word;
}

/* ==================== OFFERS ==================== */
.luxe-offers-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-md);
}

.luxe-offer-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  gap: var(--space-md);
  padding: 1rem;
  padding: var(--space-md);
  background: #ffffff;
  background: var(--bg-card);
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  transition: all 150ms ease;
  transition: all var(--transition-fast);
  width: 100%;
  max-width: 100%;
}

.luxe-offer-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
  border-color: #e9dece;
  border-color: var(--border-medium);
}

.luxe-offer-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.luxe-offer-content {
  flex: 1 1;
  min-width: 0;
}

.luxe-offer-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(249, 152, 6, 0.15);
  background: var(--color-primary-light);
  border: 1px solid rgba(249, 152, 6, 0.3);
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  color: #f99806;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
}

.luxe-offer-description {
  color: #9e7b47;
  color: var(--text-secondary);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
}

/* ==================== WARRANTY ==================== */
.luxe-warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-gap: 1rem;
  grid-gap: var(--space-md);
  gap: var(--space-md);
}

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

.luxe-warranty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  padding: 1rem;
  padding: var(--space-md);
  background: #ffffff;
  background: var(--bg-card);
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  transition: all 150ms ease;
  transition: all var(--transition-fast);
}

.luxe-warranty-item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  border-color: #f99806;
  border-color: var(--color-primary);
}

.luxe-warranty-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4efe6;
  background: var(--bg-elevated);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 0.25rem;
  margin-bottom: var(--space-xs);
}

.luxe-warranty-title {
  color: #1c160d;
  color: var(--text-primary);
  font-weight: 600;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
}

.luxe-warranty-sub {
  color: #6b7280;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ==================== SELLER ==================== */
.luxe-seller-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-md);
}

.luxe-seller-card {
  padding: 1.5rem;
  padding: var(--space-lg);
  background: #ffffff;
  background: var(--bg-card);
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  border-radius: var(--radius-xl);
}

.luxe-seller-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  gap: var(--space-md);
  margin-bottom: 1rem;
  margin-bottom: var(--space-md);
}

.luxe-seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: #f4efe6;
  background: var(--bg-elevated);
  padding: 4px;
}

.luxe-seller-info {
  flex: 1 1;
  min-width: 0;
}

.luxe-seller-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #1c160d;
  color: var(--text-primary);
}

.luxe-seller-badges {
  display: flex;
  gap: 0.25rem;
  gap: var(--space-xs);
  margin-top: 0.25rem;
  margin-top: var(--space-xs);
  flex-wrap: wrap;
}

.luxe-seller-badge {
  padding: 0.25rem 0.5rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.luxe-seller-badge.verified {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  background: linear-gradient(135deg, var(--color-success) 0%, #34d399 100%);
  color: white;
}

.luxe-seller-badge.top {
  background: linear-gradient(135deg, #f99806 0%, #ff8f00 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8f00 100%);
  color: white;
}

.luxe-seller-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  grid-gap: 0.5rem;
  grid-gap: var(--space-sm);
  gap: var(--space-sm);
  padding: 1rem;
  padding: var(--space-md);
  background: #f4efe6;
  background: var(--bg-elevated);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .luxe-seller-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.luxe-seller-stat {
  text-align: center;
}

.luxe-seller-stat-value {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 800;
  color: #1c160d;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  gap: var(--space-xs);
}

.luxe-seller-stat-label {
  font-size: 0.65rem;
  color: #6b7280;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.luxe-seller-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-gap: 1rem;
  grid-gap: var(--space-md);
  gap: var(--space-md);
}

.luxe-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  padding: 1rem;
  padding: var(--space-md);
  background: #ffffff;
  background: var(--bg-card);
  border: 1px solid #f4efe6;
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  font-weight: 600;
  color: #1c160d;
  color: var(--text-primary);
}

/* ==================== DESKTOP ACTIONS ==================== */
.desktop-actions {
  display: flex;
  gap: 1rem;
  gap: var(--space-md);
  position: -webkit-sticky;
  position: sticky;
  bottom: 1.5rem;
  bottom: var(--space-lg);
  background: #f8f7f5;
  background: var(--bg-main);
  padding: 1rem 0;
  padding: var(--space-md) 0;
  z-index: 10;
  width: 100%;
}

/* ==================== BOTTOM BAR (MOBILE) ==================== */
.luxe-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  background: #ffffff;
  background: var(--bg-card);
  border-top: 1px solid #f4efe6;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 1rem;
  padding: var(--space-md);
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom));
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.bottom-bar-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.price-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.price-display {
  flex: 1 1;
  min-width: 0;
}

.price-label {
  font-size: 0.75rem;
  color: #6b7280;
  color: var(--text-muted);
  font-weight: 500;
}

.price-values {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.current-price {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 800;
  color: #1c160d;
  color: var(--text-primary);
}

.original-price {
  font-size: 0.875rem;
  color: #6b7280;
  color: var(--text-muted);
  text-decoration: line-through;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  gap: var(--space-sm);
  width: 100%;
}

.action-btn {
  flex: 1 1;
  padding: 1rem 0.5rem;
  padding: var(--space-md) var(--space-sm);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  gap: var(--space-xs);
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
  transition: all var(--transition-fast);
  min-width: 0;
}

.action-btn.secondary {
  background: transparent;
  color: #1c160d;
  color: var(--text-primary);
  border: 2px solid #1c160d;
  border: 2px solid var(--text-primary);
}

.action-btn.secondary.success {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  border-color: var(--color-success);
  color: #10b981;
  color: var(--color-success);
}

.action-btn.primary {
  background: linear-gradient(135deg, #f99806 0%, #ff8f00 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8f00 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(249, 152, 6, 0.4);
  box-shadow: var(--shadow-primary);
}

.savings-banner {
  padding: 0.5rem;
  padding: var(--space-sm);
  border-radius: 0.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 1px solid #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  gap: var(--space-sm);
  color: #047857;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==================== BUY NOW POPUP - FIXED CENTERING ==================== */
/* ==================== BUY NOW POPUP - EXACT HTML STYLE ==================== */
/* ==================== BUY NOW POPUP - POPPINS FONT ==================== */

.luxe-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1400;
}

.luxe-popup-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 1rem;
  pointer-events: none;
}

.luxe-buy-now-popup {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  animation: luxe-fade-in 0.3s ease-out;
  padding: 0.5rem 0;
}

@keyframes luxe-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Header */
.luxe-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 2rem 1rem;
  flex-shrink: 0;
  gap: 1rem;
}

.luxe-header-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1;
  min-width: 0;
}

.luxe-popup-title {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.luxe-product-name {
  font-family: "Poppins", sans-serif;
  color: #9ca3af;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.3;
  margin-left: 10px;
  padding: 0;
  display: block;
}

.luxe-close-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 150ms ease;
  flex-shrink: 0;
  margin-top: 0.25rem;
  padding: 0;
}

.luxe-close-btn:hover {
  background: #f3f4f6;
  color: #1a1a1a;
  transform: rotate(90deg);
}

/* Price Banner */
.luxe-price-banner {
  background: #fffbf2;
  border: 1px solid rgba(249, 152, 6, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 0 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-shrink: 0;
}

.luxe-price-label {
  font-family: "Poppins", sans-serif;
  color: #6b7280;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.luxe-price-value {
  font-family: "Poppins", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #f99806;
  letter-spacing: -0.02em;
}

/* Form Container */
.luxe-form-container {
  flex: 1 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.luxe-form-container::-webkit-scrollbar {
  display: none;
}

.luxe-popup-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1rem;
}

/* Info Banner */
.luxe-info-banner {
  padding: 0.75rem;
  background: rgba(249, 152, 6, 0.1);
  color: #f99806;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(249, 152, 6, 0.2);
}

/* Form Groups */
.luxe-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.luxe-form-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  margin-left: 0.25rem;
  margin-bottom: 0.25rem;
}

.luxe-form-input,
.luxe-form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  transition: all 200ms;
  outline: none;
}

.luxe-form-input::placeholder,
.luxe-form-textarea::placeholder {
  color: #9ca3af;
  font-family: "Poppins", sans-serif;
}

.luxe-form-input:focus,
.luxe-form-textarea:focus {
  border-color: #f99806;
  box-shadow: 0 0 0 3px rgba(249, 152, 6, 0.1);
}

.luxe-form-textarea {
  min-height: 5rem;
  resize: none;
}

.luxe-form-input.luxe-error,
.luxe-form-textarea.luxe-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.luxe-error-text {
  color: #ef4444;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

/* Footer */
.luxe-popup-footer {
  padding: 1rem 2rem 2rem;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.luxe-submit-btn {
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: linear-gradient(135deg, #f99806 0%, #d48105 100%);
  color: white;
  border: none;
  border-radius: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px -10px rgba(249, 152, 6, 0.4);
  transition: all 150ms ease;
  min-height: 3.5rem;
}

.luxe-submit-btn:hover:not(:disabled) {
  opacity: 0.95;
  transform: translateY(-1px);
}

.luxe-submit-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.luxe-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.luxe-loading-text::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 0.5rem;
}

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

.luxe-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #9ca3af;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .luxe-popup-wrapper {
    padding: 0;
    align-items: flex-end;
  }

  .luxe-buy-now-popup {
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    animation: slideUp 0.3s ease-out;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .luxe-popup-header,
  .luxe-price-banner,
  .luxe-form-container,
  .luxe-popup-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .luxe-popup-title {
    font-size: 24px;
  }
}

@media (max-width: 375px) {
  .luxe-popup-header,
  .luxe-price-banner,
  .luxe-form-container,
  .luxe-popup-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .luxe-popup-title {
    font-size: 22px;
  }

  .luxe-submit-btn {
    font-size: 0.875rem;
  }
}
/* Phone Input Styling */
.luxe-phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
}

.luxe-phone-prefix {
  padding: 0 12px;
  color: #6b7280;
  font-weight: 500;
  border-right: 1px solid #e5e7eb;
  background: #f3f4f6;
  height: 100%;
  display: flex;
  align-items: center;
}

.luxe-phone-input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1 1;
}

.luxe-phone-input:focus {
  outline: none;
  box-shadow: none;
}

.luxe-phone-input-wrapper:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .luxe-form-input,
  .luxe-form-textarea,
  .luxe-form-select {
    font-size: 16px;
  }
}

/* ==================== ADDRESS SECTION - ENHANCED UI ==================== */

/* Address Dropdown Container */
.luxe-address-dropdown-wrapper {
  position: relative;
  width: 100%;
}

/* Address Dropdown Styling */
.luxe-form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  padding-right: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  font-size: 0.9375rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background-image: none; /* will add custom drop-down icon via pseudo-element */
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Dropdown chevron icon */
.luxe-address-dropdown-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27%23000%27 d=%27M7 10l5 5 5-5z%27/%3E%3C/svg%3E");
  background-size: 12px 12px;
  pointer-events: none;
}

.luxe-form-select:hover {
  border-color: #e5e7eb;
}

.luxe-form-select:focus {
  border-color: #cbd5e1;
  box-shadow: none;
}

.luxe-form-select.luxe-error {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.luxe-form-select option {
  padding: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  background: #ffffff;
  color: #1a1a1a;
}

.luxe-form-select option:hover {
  background: #fffbf2;
}

/* Add New Address Button - Enhanced */
.luxe-add-address-btn {
  width: 100%;
  padding: 0.6rem 0.9rem; /* smaller button */
  background: linear-gradient(135deg, rgba(249, 152, 6, 0.08) 0%, rgba(249, 152, 6, 0.12) 100%);
  border: 2px dashed #f99806;
  border-radius: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #f99806;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

.luxe-add-address-btn:hover {
  background: rgba(249, 152, 6, 0.08);
  border-color: #f99806;
}

/* Selected Address Display - Enhanced Card */
.luxe-selected-address {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #f9fff6;
  border: 1px solid #d1fae5;
  border-radius: 1rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

@keyframes slideInAddress {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.luxe-selected-address::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 3px;
  height: calc(100% - 16px);
  background: #10b981;
  border-radius: 2px;
}

.luxe-selected-address p {
  margin: 0;
  padding-left: 0.5rem;
  font-size: 0.9375rem;
  color: #065f46;
  line-height: 1.7;
  font-weight: 500;
}

/* Address Section Header */
.luxe-address-section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.luxe-address-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f99806 0%, #d48105 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(249, 152, 6, 0.3);
}

/* Loading State for Address Dropdown */
.luxe-form-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f3f4f6;
}

/* Empty State Message */
.luxe-address-empty-state {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px dashed #fbbf24;
  border-radius: 1rem;
  margin-top: 0.75rem;
}

.luxe-address-empty-state p {
  margin: 0;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

/* Divider between address selector and manual entry */
.luxe-address-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.luxe-address-divider::before,
.luxe-address-divider::after {
  content: "";
  flex: 1 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.luxe-address-divider span {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .luxe-form-select {
    padding: 0.875rem 1rem;
    padding-right: 2.75rem;
    font-size: 0.875rem;
  }
  
  .luxe-add-address-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .luxe-selected-address {
    padding: 1rem;
  }
  
  .luxe-selected-address p {
    font-size: 0.875rem;
  }
}
/* ==================== NOT FOUND ==================== */
.product-not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding: var(--space-xl);
  text-align: center;
}

.product-not-found h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
  margin: var(--space-lg) 0 var(--space-sm);
  color: #1c160d;
  color: var(--text-primary);
}

.product-not-found p {
  color: #9e7b47;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  margin-bottom: var(--space-xl);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

/* ==================== SKELETON ==================== */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.08) 25%,
    rgba(0, 0, 0, 0.04) 50%,
    rgba(0, 0, 0, 0.08) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.5rem;
  border-radius: var(--radius-md);
}

.skeleton-layout {
  width: 100%;
}

/* ==================== DIVIDER ==================== */
.divider {
  border: none;
  border-top: 1px solid #f4efe6;
  border-top: 1px solid var(--border-light);
  margin: 1rem 0;
  margin: var(--space-md) 0;
}

/* ==================== MOBILE SPECIFIC ==================== */
.mobile .mobile-description,
.mobile .mobile-details {
  margin-top: 1.5rem;
  margin-top: var(--space-lg);
  padding: 0 1rem;
  padding: 0 var(--space-md);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 374px) {
  :root {
    --space-md: 0.75rem;
    --space-lg: 1rem;
  }

  .luxe-btn-primary,
  .luxe-btn-secondary {
    padding: 0.5rem 1rem;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.75rem;
  }

  .luxe-tab-pills {
    padding: 0.5rem;
    padding: var(--space-sm);
  }

  .luxe-tab-pill {
    padding: 0.25rem 0.5rem;
    padding: var(--space-xs) var(--space-sm);
  }
}

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

  .luxe-seller-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-layout {
    flex-direction: row;
  }

  .gallery-section {
    position: relative;
  }
}

@media (min-width: 1440px) {
  .luxe-container {
    max-width: 1600px;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #f99806;
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .luxe-bottom-bar,
  .product-header-sticky,
  .popup-backdrop,
  .buy-now-popup {
    display: none !important;
  }
}

/* Enhanced Glassmorphism Design System - MINIMAL Blur for Clarity */

:root {
  /* Reduced transparency levels - Better visibility */
  --glass-bg-cloud: rgba(255, 255, 255, 0.08); /* Light - 8% */
  --glass-bg-ultra-light: rgba(255, 255, 255, 0.12); /* Visible - 12% */
  --glass-bg-light: rgba(255, 255, 255, 0.15); /* Clear - 15% */
  --glass-bg: rgba(255, 255, 255, 0.18); /* Default - 18% */
  --glass-bg-medium: rgba(255, 255, 255, 0.22); /* Medium - 22% */
  --glass-bg-heavy: rgba(255, 255, 255, 0.28); /* Heavy - 28% */
  
  /* MINIMAL blur levels - Much clearer */
  --glass-blur-none: 0px; /* No blur */
  --glass-blur-minimal: 4px; /* Minimal blur */
  --glass-blur-light: 6px; /* Light blur */
  --glass-blur: 8px; /* Default - REDUCED from 15px */
  --glass-blur-medium: 10px; /* Medium blur */
  --glass-blur-heavy: 12px; /* Heavy blur - still readable */
  
  /* Visible borders for clarity */
  --glass-border-cloud: rgba(255, 255, 255, 0.15);
  --glass-border-subtle: rgba(255, 255, 255, 0.20);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-border-prominent: rgba(255, 255, 255, 0.30);
  
  /* Subtle shadows */
  --glass-shadow-cloud: rgba(31, 38, 135, 0.08);
  --glass-shadow-subtle: rgba(31, 38, 135, 0.12);
  --glass-shadow: rgba(31, 38, 135, 0.15);
  --glass-shadow-prominent: rgba(31, 38, 135, 0.20);
  
  --glass-border-radius: 16px;
  --glass-border-radius-large: 20px;
  
  /* Animation timing */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  --transition-ultra-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Remove excessive text shadows */
.glass,
.glass-cloud,
.glass-ultra-light,
.glass-light,
.glass-medium,
.glass-heavy,
.glass-card,
.glass-frosted {
  color: white;
}

/* Cloud-like ultra-transparent glass - Minimal blur */
.glass-cloud {
  background: rgba(255, 255, 255, 0.08);
  background: var(--glass-bg-cloud);
  backdrop-filter: blur(4px);
  backdrop-filter: blur(var(--glass-blur-minimal));
  -webkit-backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(var(--glass-blur-minimal));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border: 1px solid var(--glass-border-cloud);
  border-radius: 16px;
  border-radius: var(--glass-border-radius);
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
  box-shadow: 0 4px 16px 0 var(--glass-shadow-cloud);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all var(--transition-normal) var(--transition-ultra-smooth);
}

/* Ultra-light glass - MINIMAL blur */
.glass-ultra-light {
  background: rgba(255, 255, 255, 0.12);
  background: var(--glass-bg-ultra-light);
  backdrop-filter: blur(6px);
  backdrop-filter: blur(var(--glass-blur-light));
  -webkit-backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(var(--glass-blur-light));
  border: 1px solid rgba(255, 255, 255, 0.20);
  border: 1px solid var(--glass-border-subtle);
  border-radius: 16px;
  border-radius: var(--glass-border-radius);
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.12);
  box-shadow: 0 4px 16px 0 var(--glass-shadow-subtle);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all var(--transition-normal) var(--transition-ultra-smooth);
}

/* Base glass effect - MINIMAL blur for clarity */
.glass {
  background: rgba(255, 255, 255, 0.12);
  background: var(--glass-bg-ultra-light);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(var(--glass-blur)); /* 8px - much clearer! */
  -webkit-backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  border-radius: var(--glass-border-radius);
  box-shadow: 0 8px 24px 0 rgba(31, 38, 135, 0.15);
  box-shadow: 0 8px 24px 0 var(--glass-shadow);
}

.glass-light {
  background: rgba(255, 255, 255, 0.15);
  background: var(--glass-bg-light);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  border-radius: var(--glass-border-radius);
  box-shadow: 0 8px 24px 0 rgba(31, 38, 135, 0.15);
  box-shadow: 0 8px 24px 0 var(--glass-shadow);
}

.glass-medium {
  background: rgba(255, 255, 255, 0.22);
  background: var(--glass-bg-medium);
  backdrop-filter: blur(10px);
  backdrop-filter: blur(var(--glass-blur-medium));
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(var(--glass-blur-medium));
  border: 1px solid rgba(255, 255, 255, 0.30);
  border: 1px solid var(--glass-border-prominent);
  border-radius: 16px;
  border-radius: var(--glass-border-radius);
  box-shadow: 0 10px 32px 0 rgba(31, 38, 135, 0.20);
  box-shadow: 0 10px 32px 0 var(--glass-shadow-prominent);
}

.glass-heavy {
  background: rgba(255, 255, 255, 0.28);
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(12px);
  backdrop-filter: blur(var(--glass-blur-heavy));
  -webkit-backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  border: 1px solid rgba(255, 255, 255, 0.30);
  border: 1px solid var(--glass-border-prominent);
  border-radius: 16px;
  border-radius: var(--glass-border-radius);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

/* Enhanced glass card - MINIMAL blur */
.glass-card {
  background: rgba(255, 255, 255, 0.12);
  background: var(--glass-bg-ultra-light);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(var(--glass-blur)); /* 8px - clear! */
  -webkit-backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.20);
  border: 1px solid var(--glass-border-subtle);
  border-radius: 16px;
  border-radius: var(--glass-border-radius);
  box-shadow: 0 8px 24px 0 rgba(31, 38, 135, 0.15);
  box-shadow: 0 8px 24px 0 var(--glass-shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all var(--transition-normal) var(--transition-ultra-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.5s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.20),
              0 0 30px 0 rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px 0 var(--glass-shadow-prominent),
              0 0 30px 0 rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.15);
  background: var(--glass-bg-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border: 1px solid var(--glass-border);
}

/* Frosted glass effect - REDUCED blur */
.glass-frosted {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 20px;
  border-radius: var(--glass-border-radius-large);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.10);
}

/* Animated background gradients */
.gradient-bg {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

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

/* Floating animation */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Pulse animation */
.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Glow effect - SUBTLE */
.glow {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2),
              0 0 30px rgba(255, 255, 255, 0.1);
}

.glow-hover {
  transition: box-shadow 0.3s ease;
  transition: box-shadow var(--transition-normal) ease;
}

.glow-hover:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
              0 0 40px rgba(255, 255, 255, 0.15);
}

/* Slide in animations */
.slide-in-left {
  animation: slideInLeft 0.5s ease-out;
  animation: slideInLeft var(--transition-slow) ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInRight 0.5s ease-out;
  animation: slideInRight var(--transition-slow) ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-up {
  animation: slideInUp 0.5s ease-out;
  animation: slideInUp var(--transition-slow) ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
  animation: fadeIn var(--transition-slow) ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Rotate animation */
.rotate-animation {
  animation: rotate 20s linear infinite;
}

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

/* Scale on hover */
.scale-hover {
  transition: transform 0.3s ease;
  transition: transform var(--transition-normal) ease;
}

.scale-hover:hover {
  transform: scale(1.03);
}

/* Button glass effect - CLEARER */
.glass-button {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 12px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  transition: all var(--transition-normal) ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.glass-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Shimmer effect - SUBTLE */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive utilities */
@media (max-width: 768px) {
  :root {
    --glass-blur: 6px;
    --glass-border-radius: 12px;
  }
}

/* Page transitions */
.page-transition-enter {
  opacity: 0;
  transform: translateY(20px);
}

.page-transition-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms, transform 300ms;
}

.page-transition-exit {
  opacity: 1;
}

.page-transition-exit-active {
  opacity: 0;
  transition: opacity 300ms;
}




