* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #474445;
  background-color: #f8f9fa;
  font-size: 16px;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ===== FINN.NO INSPIRED DESIGN SYSTEM ===== */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Colors - Finn.no inspired */
  --w-color-text: #1a1a1a;
  --w-color-text-subtle: #6b7280;
  --w-color-text-muted: #9ca3af;
  --w-color-background: #ffffff;
  --w-color-background-subtle: #f9fafb;
  --w-color-background-muted: #f3f4f6;
  --w-color-border: #e5e7eb;
  --w-color-border-subtle: #f3f4f6;
  --w-color-border-focus: #06befc;
  --w-color-primary: #06befc;
  --w-color-primary-hover: #05a8d8;
  --w-color-primary-active: #0066cc;
  --w-color-success: #10b981;
  --w-color-warning: #f59e0b;
  --w-color-error: #ef4444;

  /* Semantic color aliases for footer */
  --w-s-color-text: var(--w-color-text);
  --w-s-color-text-subtle: var(--w-color-text-subtle);
  --w-s-color-background: var(--w-color-background);
  --w-s-color-border: var(--w-color-border);
  --w-s-color-border-hover: var(--w-color-border-focus);
  --w-s-color-border-selected: var(--w-color-primary);
  --w-s-color-text-link: var(--w-color-primary);
  --w-s-color-icon: var(--w-color-text-subtle);
  --w-s-color-icon-subtle-hover: var(--w-color-text);
  --w-s-color-icon-secondary: var(--w-color-text-muted);
  --w-s-bg-primary: var(--w-color-primary);

  /* Spacing - 8px grid system */
  --w-space-1: 0.25rem;
  /* 4px */
  --w-space-2: 0.5rem;
  /* 8px */
  --w-space-3: 0.75rem;
  /* 12px */
  --w-space-4: 1rem;
  /* 16px */
  --w-space-5: 1.25rem;
  /* 20px */
  --w-space-6: 1.5rem;
  /* 24px */
  --w-space-8: 2rem;
  /* 32px */
  --w-space-10: 2.5rem;
  /* 40px */
  --w-space-12: 3rem;
  /* 48px */
  --w-space-16: 4rem;
  /* 64px */
  --w-space-20: 5rem;
  /* 80px */

  /* Typography */
  --w-font-size-xs: 0.75rem;
  /* 12px */
  --w-font-size-sm: 0.875rem;
  /* 14px */
  --w-font-size-base: 1rem;
  /* 16px */
  --w-font-size-lg: 1.125rem;
  /* 18px */
  --w-font-size-xl: 1.25rem;
  /* 20px */
  --w-font-size-2xl: 1.5rem;
  /* 24px */
  --w-font-size-3xl: 1.875rem;
  /* 30px */
  --w-font-size-4xl: 2.25rem;
  /* 36px */

  --w-line-height-tight: 1.25;
  --w-line-height-normal: 1.5;
  --w-line-height-relaxed: 1.75;

  /* Border radius */
  --w-radius-sm: 0.25rem;
  /* 4px */
  --w-radius-md: 0.375rem;
  /* 6px */
  --w-radius-lg: 0.5rem;
  /* 8px */
  --w-radius-xl: 0.75rem;
  /* 12px */
  --w-radius-2xl: 1rem;
  /* 16px */

  /* Shadows */
  --w-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --w-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --w-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --w-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --w-transition-fast: 150ms ease-in-out;
  --w-transition-normal: 250ms ease-in-out;
  --w-transition-slow: 350ms ease-in-out;
}

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

/* Mobile-first responsive design */
@media (max-width: 767px) {

  /* Base typography adjustments */
  body {
    font-size: var(--w-font-size-sm);
    line-height: var(--w-line-height-normal);
    color: var(--w-color-text);
    background-color: var(--w-color-background-subtle);
  }

  /* Container adjustments */
  .container {
    padding: 0 var(--w-space-3);
    max-width: 100%;
  }

  /* Page container responsive */
  .page-container {
    padding-left: var(--w-space-3);
    padding-right: var(--w-space-3);
    max-width: 100%;
  }

  /* Typography responsive */
  h1 {
    font-size: var(--w-font-size-2xl);
    line-height: var(--w-line-height-tight);
    font-weight: 600;
    color: var(--w-color-text);
  }

  h2 {
    font-size: var(--w-font-size-xl);
    line-height: var(--w-line-height-tight);
    font-weight: 600;
    color: var(--w-color-text);
  }

  h3 {
    font-size: var(--w-font-size-lg);
    line-height: var(--w-line-height-tight);
    font-weight: 500;
    color: var(--w-color-text);
  }

  h4 {
    font-size: var(--w-font-size-base);
    line-height: var(--w-line-height-tight);
    font-weight: 500;
    color: var(--w-color-text);
  }

  h5 {
    font-size: var(--w-font-size-sm);
    line-height: var(--w-line-height-tight);
    font-weight: 500;
    color: var(--w-color-text);
  }

  h6 {
    font-size: var(--w-font-size-xs);
    line-height: var(--w-line-height-tight);
    font-weight: 500;
    color: var(--w-color-text);
  }

  /* Button responsive */
  .btn {
    padding: var(--w-space-3) var(--w-space-4);
    font-size: var(--w-font-size-sm);
    min-height: 44px;
    border-radius: var(--w-radius-md);
    font-weight: 500;
    transition: all var(--w-transition-fast);
    border: 1px solid transparent;
  }

  .btn-sm {
    padding: var(--w-space-2) var(--w-space-3);
    font-size: var(--w-font-size-xs);
    min-height: 36px;
    border-radius: var(--w-radius-sm);
  }

  .btn-lg {
    padding: var(--w-space-4) var(--w-space-5);
    font-size: var(--w-font-size-base);
    min-height: 52px;
    border-radius: var(--w-radius-lg);
  }

  /* Form responsive */
  .form-group {
    margin-bottom: var(--w-space-4);
  }

  .form-control {
    padding: var(--w-space-3) var(--w-space-4);
    font-size: var(--w-font-size-sm);
    border: 1px solid var(--w-color-border);
    border-radius: var(--w-radius-md);
    background-color: var(--w-color-background);
    color: var(--w-color-text);
    transition: all var(--w-transition-fast);
  }

  .form-control:focus {
    outline: none;
    border-color: var(--w-color-border-focus);
    box-shadow: 0 0 0 3px rgba(6, 190, 252, 0.1);
  }

  /* Card components */
  /* ===== FINN.NO INSPIRED BASE CARD STYLES ===== */
  .base-card {
    position: relative;
    background: var(--w-color-background);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--w-transition-normal);
  }

  .base-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: all var(--w-transition-normal);
  }

  .base-card a:hover {
    text-decoration: none;
    color: inherit;
  }

  .base-card a:focus {
    outline: 2px solid var(--w-color-primary);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .base-card .relative {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .base-card .flex-col {
    display: flex;
    flex-direction: column;
  }

  /* Image Container - Finn.no style */
  .base-card .aspect-square {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--w-color-background);
  }

  .base-card .aspect-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
  }

  .base-card .aspect-square .w-full {
    width: 100%;
    height: 100%;
  }

  .base-card .aspect-square .h-full {
    height: 100%;
  }

  .base-card .aspect-square .object-center {
    object-position: center;
  }

  .base-card .aspect-square .object-cover {
    object-fit: cover;
  }

  .base-card .aspect-square .m-auto {
    margin: auto;
  }

  /* Title - Finn.no style */
  .base-card h3 {
    font-size: var(--w-font-size-base);
    font-weight: 400;
    line-height: var(--w-line-height-normal);
    margin: 0;
    padding: 8px 0 0 0;
    color: var(--w-color-text);
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  .base-card .text-body {
    font-size: var(--w-font-size-base);
    line-height: var(--w-line-height-normal);
  }

  .base-card .font-normal {
    font-weight: 400;
  }

  .base-card .pt-8 {
    padding-top: 8px;
  }

  .base-card .mb-0 {
    margin-bottom: 0;
  }

  .base-card .break-words {
    overflow-wrap: break-word;
  }

  .base-card .text-ellipsis {
    text-overflow: ellipsis;
  }

  .base-card .two-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  /* Price - Finn.no style */
  .base-card .font-bold {
    font-weight: 700;
    color: var(--w-color-text);
    padding: 4px 0 0 0;
  }

  .base-card .pt-4 {
    padding-top: 4px;
  }

  /* Location - Finn.no style */
  .base-card .text-s {
    font-size: var(--w-font-size-sm);
    line-height: var(--w-line-height-normal);
  }

  .base-card .s-text-subtle {
    color: var(--w-color-text-subtle);
  }

  .base-card .pt-8 {
    padding-top: 8px;
  }

  /* Badge - Finn.no style */
  .base-card .text-xs {
    font-size: var(--w-font-size-xs);
    line-height: var(--w-line-height-tight);
  }

  .base-card .py-4 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .base-card .px-8 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .base-card .border-0 {
    border: 0;
  }

  .base-card .rounded-4 {
    border-radius: 4px;
  }

  .base-card .inline-flex {
    display: inline-flex;
    align-items: center;
  }

  /* Favorite Button - Finn.no style */
  .base-card .absolute {
    position: absolute;
  }

  .base-card .top-0 {
    top: 0;
  }

  .base-card .right-0 {
    right: 0;
  }

  .base-card .inline-flex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .base-card .min-h-44 {
    min-height: 44px;
  }

  .base-card .min-w-44 {
    min-width: 44px;
  }

  .base-card .text-m {
    font-size: var(--w-font-size-base);
    line-height: 24px;
  }

  .base-card .p-4 {
    padding: 4px;
  }

  .base-card .rounded-full {
    border-radius: 50%;
  }

  .base-card .border-0 {
    border: 0;
  }

  .base-card .bg-transparent {
    background-color: transparent;
  }

  .base-card .hover\:bg-clip-padding:hover {
    background-clip: padding-box;
  }

  .base-card .font-bold {
    font-weight: 700;
  }

  .base-card .focusable {
    outline: none;
  }

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

  .base-card .transition-colors {
    transition: color var(--w-transition-normal);
  }

  .base-card .ease-in-out {
    transition-timing-function: ease-in-out;
  }

  .base-card .s-icon {
    color: var(--w-color-text-subtle);
  }

  .base-card .hover\:s-icon-hover:hover {
    color: var(--w-color-text);
  }

  .base-card .active\:s-icon-active:active {
    color: var(--w-color-primary);
  }

  .base-card .max-w-max {
    max-width: max-content;
  }

  /* Product grid responsive */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--w-space-3);
    padding: var(--w-space-4) 0;
  }

  /* Category grid responsive */
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--w-space-3);
    padding: var(--w-space-4) 0;
  }

  /* Navigation responsive */
  .navbar {
    background: var(--w-color-background);
    border-bottom: 1px solid var(--w-color-border);
    box-shadow: var(--w-shadow-sm);
  }

  .navbar-brand {
    font-size: var(--w-font-size-lg);
    font-weight: 600;
    color: var(--w-color-primary);
  }

  /* Search responsive */
  .search-form {
    display: flex;
    flex-direction: column;
    gap: var(--w-space-2);
  }

  .search-input {
    padding: var(--w-space-3) var(--w-space-4);
    font-size: var(--w-font-size-sm);
    border: 1px solid var(--w-color-border);
    border-radius: var(--w-radius-md);
    background: var(--w-color-background);
  }

  .search-btn {
    padding: var(--w-space-3) var(--w-space-4);
    background: var(--w-color-primary);
    color: white;
    border: none;
    border-radius: var(--w-radius-md);
    font-size: var(--w-font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--w-transition-fast);
  }

  .search-btn:hover {
    background: var(--w-color-primary-hover);
  }

  /* Footer responsive */
  .footer {
    background: var(--w-color-background);
    border-top: 1px solid var(--w-color-border);
    margin-top: var(--w-space-16);
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--w-space-6);
    padding: var(--w-space-8) 0;
  }

  .footer-section h3 {
    font-size: var(--w-font-size-sm);
    font-weight: 600;
    color: var(--w-color-text);
    margin-bottom: var(--w-space-3);
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section li {
    margin-bottom: var(--w-space-2);
  }

  .footer-section a {
    color: var(--w-color-text-subtle);
    text-decoration: none;
    font-size: var(--w-font-size-sm);
    transition: color var(--w-transition-fast);
  }

  .footer-section a:hover {
    color: var(--w-color-primary);
  }

  .footer-bottom {
    border-top: 1px solid var(--w-color-border);
    padding: var(--w-space-4) 0;
  }

  .footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: var(--w-space-3);
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: var(--w-space-2);
  }

  .footer-logo strong {
    color: var(--w-color-primary);
    font-size: var(--w-font-size-lg);
    font-weight: 600;
  }

  .footer-copyright {
    color: var(--w-color-text-muted);
    font-size: var(--w-font-size-xs);
    margin: 0;
    line-height: var(--w-line-height-normal);
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--w-space-4);
    justify-content: center;
  }

  .footer-link {
    color: var(--w-color-text-muted);
    text-decoration: none;
    font-size: var(--w-font-size-xs);
    transition: color var(--w-transition-fast);
    padding: var(--w-space-1) 0;
  }

  .footer-link:hover {
    color: var(--w-color-primary);
  }

  /* Utility classes */
  .text-center {
    text-align: center;
  }

  .text-left {
    text-align: left;
  }

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

  .font-normal {
    font-weight: 400;
  }

  .font-medium {
    font-weight: 500;
  }

  .font-semibold {
    font-weight: 600;
  }

  .font-bold {
    font-weight: 700;
  }

  .text-xs {
    font-size: var(--w-font-size-xs);
  }

  .text-sm {
    font-size: var(--w-font-size-sm);
  }

  .text-base {
    font-size: var(--w-font-size-base);
  }

  .text-lg {
    font-size: var(--w-font-size-lg);
  }

  .text-xl {
    font-size: var(--w-font-size-xl);
  }

  .text-primary {
    color: var(--w-color-primary);
  }

  .text-subtle {
    color: var(--w-color-text-subtle);
  }

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

  .bg-primary {
    background-color: var(--w-color-primary);
  }

  .bg-subtle {
    background-color: var(--w-color-background-subtle);
  }

  .bg-muted {
    background-color: var(--w-color-background-muted);
  }

  .border {
    border: 1px solid var(--w-color-border);
  }

  .border-subtle {
    border: 1px solid var(--w-color-border-subtle);
  }

  .rounded-sm {
    border-radius: var(--w-radius-sm);
  }

  .rounded-md {
    border-radius: var(--w-radius-md);
  }

  .rounded-lg {
    border-radius: var(--w-radius-lg);
  }

  .rounded-xl {
    border-radius: var(--w-radius-xl);
  }

  .shadow-sm {
    box-shadow: var(--w-shadow-sm);
  }

  .shadow-md {
    box-shadow: var(--w-shadow-md);
  }

  .shadow-lg {
    box-shadow: var(--w-shadow-lg);
  }

  .transition {
    transition: all var(--w-transition-fast);
  }

  .transition-normal {
    transition: all var(--w-transition-normal);
  }

  .transition-slow {
    transition: all var(--w-transition-slow);
  }

  /* Mobile-only search section */
  .mobile-search-section {
    display: block;
  }

  /* Finn.no inspired search box for mobile */
  .mobile-search-section .searchbox {
    position: relative;
  }

  .mobile-search-section .searchbox .input {
    position: relative;
  }

  .mobile-search-section .searchbox input {
    width: 100%;
    padding: 16px 20px;
    padding-right: 60px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #ffffff;
    color: #1a1a1a;
    transition: all 0.2s ease;
    box-shadow: none;
  }

  .mobile-search-section .searchbox input:focus {
    outline: none;
    border-color: #06befc;
    box-shadow: 0 0 0 2px rgba(6, 190, 252, 0.1);
  }

  .mobile-search-section .searchbox input::placeholder {
    color: #9ca3af;
    font-weight: 400;
  }

  .mobile-search-section .searchbox button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-search-section .searchbox button:hover {
    background: transparent;
  }

  .mobile-search-section .searchbox button:focus {
    outline: none;
  }

  .mobile-search-section .searchbox button svg {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: color 0.2s ease;
  }

  .mobile-search-section .searchbox button:hover svg {
    color: #6b7280;
  }
}

/* ===== TABLET RESPONSIVE STYLES ===== */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Hide mobile search section on tablet and desktop */
  .mobile-search-section {
    display: none;
  }

  /* Container adjustments */
  .container {
    padding: 0 var(--w-space-6);
    max-width: 100%;
  }

  .page-container {
    padding-left: var(--w-space-6);
    padding-right: var(--w-space-6);
    max-width: 100%;
  }

  /* Typography adjustments */
  body {
    font-size: var(--w-font-size-base);
  }

  h1 {
    font-size: var(--w-font-size-3xl);
  }

  h2 {
    font-size: var(--w-font-size-2xl);
  }

  h3 {
    font-size: var(--w-font-size-xl);
  }

  /* Product grid */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w-space-4);
  }

  /* Category grid */
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w-space-4);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--w-space-8);
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-end;
  }

  /* Search form */
  .search-form {
    flex-direction: row;
    gap: var(--w-space-3);
  }

  .search-input {
    flex: 1;
  }
}

/* ===== DESKTOP RESPONSIVE STYLES ===== */
@media (min-width: 1024px) {

  /* Hide mobile search section on desktop */
  .mobile-search-section {
    display: none;
  }

  /* Container adjustments */
  .container {
    padding: 0 var(--w-space-8);
    max-width: 1200px;
  }

  .page-container {
    padding-left: var(--w-space-8);
    padding-right: var(--w-space-8);
    max-width: 1200px;
  }

  /* Typography adjustments */
  body {
    font-size: var(--w-font-size-base);
  }

  h1 {
    font-size: var(--w-font-size-4xl);
  }

  h2 {
    font-size: var(--w-font-size-3xl);
  }

  h3 {
    font-size: var(--w-font-size-2xl);
  }

  /* Product grid */
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--w-space-6);
  }

  /* Category grid */
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--w-space-6);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--w-space-8);
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-end;
  }

  /* Search form */
  .search-form {
    flex-direction: row;
    gap: var(--w-space-3);
  }

  .search-input {
    flex: 1;
    max-width: 400px;
  }
}

.form-control {
  padding: 12px 16px;
  font-size: 16px;
  min-height: 44px;
}

.form-label {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Card responsive */
.card {
  margin-bottom: 16px;
  border-radius: 8px;
}

.card-body {
  padding: 16px;
}

.card-header {
  padding: 12px 16px;
}

.card-footer {
  padding: 12px 16px;
}

/* Grid responsive */
.row {
  margin-left: -8px;
  margin-right: -8px;
}

.col,
[class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

/* Table responsive */
.table-responsive {
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  font-size: 14px;
}

.table th,
.table td {
  padding: 8px 12px;
}

/* Modal responsive */
.modal-dialog {
  margin: 16px;
  max-width: calc(100% - 32px);
}

.modal-content {
  border-radius: 12px;
}

.modal-header {
  padding: 16px;
}

.modal-body {
  padding: 16px;
}

.modal-footer {
  padding: 16px;
}

/* Alert responsive */
.alert {
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 8px;
}

/* Badge responsive */
.badge {
  font-size: 11px;
  padding: 4px 8px;
}

/* Spacing responsive */
.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mt-5 {
  margin-top: 20px !important;
}

.p-1 {
  padding: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.p-3 {
  padding: 12px !important;
}

.p-4 {
  padding: 16px !important;
}

.p-5 {
  padding: 20px !important;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.mobile-menu-content {
  color: #05a8d8;
}

.mobile-menu-content .fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-sharp,
.fa-solid,
.fab,
.far,
.fas {
  color: #fff;
}

.navbar.finn-style {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: none;
  backdrop-filter: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 20px;
  min-height: 70px;
}

@media (max-width: 768px) {
  .navbar .container {
    padding: 12px 16px;
  }
}

.navbar .nav-left .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #1b1b1f;
}

.navbar .nav-left .logo img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar .nav-left .logo span {
  font-size: 24px;
  font-weight: 700;
  color: #06befc;
}

.navbar.finn-style .nav-left .logo span {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar .nav-center {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
  margin: 0 40px;
}

@media (max-width: 1024px) {
  .navbar .nav-center {
    display: none;
  }
}

/* ===== NAVBAR RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 767px) {
  .navbar .container {
    padding: 8px 12px;
    min-height: 60px;
  }

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

  .navbar .nav-left .logo span {
    font-size: 20px;
  }

  .navbar .nav-actions {
    gap: 8px;
  }

  .navbar .nav-action {
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
  }

  .navbar .nav-action .action-text {
    display: none;
  }

  .navbar .nav-action i {
    font-size: 16px;
  }

  .navbar .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #06befc;
    font-size: 18px;
  }
}

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

/* ===== MOBILE MENU RESPONSIVE ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
  background: #f8f9fa;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-content {
  padding: 20px 0;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.mobile-menu-item:hover {
  background-color: #f8f9fa;
  color: #06befc;
}

.mobile-menu-item i {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.mobile-menu-item span {
  font-size: 16px;
  font-weight: 500;
}

/* ===== MOBILE USER PROFILE SECTION ===== */
.mobile-user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  color: white;
  margin-bottom: 0;
}

.mobile-user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-user-avatar i {
  font-size: 24px;
  color: white;
}

.mobile-user-info {
  flex: 1;
  min-width: 0;
}

.mobile-user-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-user-email {
  font-size: 14px;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== MOBILE USER ACTIONS SECTION ===== */
.mobile-user-actions {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-user-actions .mobile-menu-item {
  background: transparent;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-user-actions .mobile-menu-item:hover {
  background: #e9ecef;
}

.mobile-user-actions .mobile-menu-item:last-child {
  border-bottom: none;
}

/* ===== MOBILE MENU DIVIDER ===== */
.mobile-menu-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 8px 0;
}

/* ===== MOBILE MENU LOGOUT STYLE ===== */
.mobile-menu-item.logout {
  color: #dc3545;
}

.mobile-menu-item.logout:hover {
  background: #f8d7da;
  color: #721c24;
}

.mobile-menu-item.logout i {
  color: #dc3545;
}

/* ===== SEARCH RESPONSIVE ===== */
@media (max-width: 1023px) {
  .navbar .nav-center {
    display: none;
  }
}

/* ===== DROPDOWN RESPONSIVE ===== */
.nav-action.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #06befc;
}

@media (max-width: 767px) {
  .dropdown-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ===== FINN-STYLE NAVBAR RESPONSIVE ===== */
.navbar.finn-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar.finn-header .page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  min-height: 70px;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1b1b1f;
  gap: 12px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.2s ease;
}

.logo-link:hover .logo-icon {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.logo-link:hover .logo-text {
  color: #06befc;
}

.logo-text {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-search {
  flex: 1;
  max-width: 600px;
  margin: 0 40px;
}

.search-form {
  width: 100%;
}

/* Enhanced Professional Search Bar */
.search-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  position: relative;
}

.search-input-group:focus-within {
  border-color: #06befc;
  box-shadow: 0 0 0 4px rgba(6, 190, 252, 0.1), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.search-input-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 190, 252, 0.02) 0%, rgba(5, 168, 216, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.search-input {
  flex: 1;
  border: none;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  background: transparent;
  color: #1f2937;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: color 0.3s ease;
}

.search-input:focus::placeholder {
  color: #d1d5db;
}

.search-btn {
  padding: 18px 24px;
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

.search-btn:hover {
  background: linear-gradient(135deg, #05a8d8 0%, #06befc 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
}

.search-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(6, 190, 252, 0.2);
}

.search-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.search-btn:hover i {
  transform: scale(1.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.nav-action:hover {
  background-color: #f8f9fa;
  color: #06befc;
}

.nav-action.primary {
  background-color: #06befc;
  color: white;
}

.nav-action.primary:hover {
  background-color: #05a8d8;
  color: white;
}

.nav-action i {
  font-size: 16px;
}

.user-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #06befc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.user-profile:hover {
  background-color: #06befc;
  color: white;
}

.user-profile i {
  font-size: 20px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #06befc;
  font-size: 18px;
}

/* ===== FINN-STYLE NAVBAR RESPONSIVE ===== */
@media (max-width: 1023px) {
  .nav-search {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar.finn-header .page-container {
    padding: 8px 12px;
    min-height: 60px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 20px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-action {
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
  }

  .nav-action .action-text {
    display: none;
  }

  .nav-action i {
    font-size: 16px;
  }

  /* Hide profile logo and login button on mobile */
  .desktop-only {
    display: none !important;
  }

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

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

  /* Show desktop-only elements on larger screens */
  .desktop-only {
    display: flex !important;
  }
}

.navbar .nav-center .search-form {
  width: 100%;
}

.navbar .nav-center .search-form .search-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  position: relative;
}

.navbar.finn-style .nav-center .search-form .search-input-group {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  box-shadow: none;
}

.navbar .nav-center .search-form .search-input-group:focus-within {
  border-color: #06befc;
  -webkit-box-shadow: 0 0 0 4px rgba(6, 190, 252, 0.1), 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 4px rgba(6, 190, 252, 0.1), 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.navbar .nav-center .search-form .search-input-group .search-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  background: transparent;
  color: #1f2937;
  transition: all 0.3s ease;
}

.navbar .nav-center .search-form .search-input-group .search-input::-webkit-input-placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar .nav-center .search-form .search-input-group .search-input:-ms-input-placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar .nav-center .search-form .search-input-group .search-input::-ms-input-placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar .nav-center .search-form .search-input-group .search-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar .nav-center .search-form .search-input-group .search-input:focus::placeholder {
  color: #d1d5db;
}

.navbar .nav-center .search-form .search-input-group .category-select {
  border: none;
  border-left: 1px solid #e0e0e0;
  padding: 16px 20px;
  background: transparent;
  outline: none;
  cursor: pointer;
  min-width: 180px;
}

.navbar .nav-center .search-form .search-input-group .search-btn {
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(6, 190, 251, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-width: 60px;
}

.navbar .nav-center .search-form .search-input-group .search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.navbar .nav-center .search-form .search-input-group .search-btn:hover::before {
  left: 100%;
}

.navbar .nav-center .search-form .search-input-group .search-btn:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
  box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
  background: linear-gradient(135deg, #05a8d8 0%, #06befc 100%);
}

.navbar .nav-center .search-form .search-input-group .search-btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 2px 6px rgba(6, 190, 252, 0.2);
  box-shadow: 0 2px 6px rgba(6, 190, 252, 0.2);
}

.navbar .nav-center .search-form .search-input-group .search-btn i {
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.navbar .nav-center .search-form .search-input-group .search-btn:hover i {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.navbar .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .navbar .nav-right {
    gap: 8px;
  }
}

.navbar .nav-right .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #474445;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar .nav-right .nav-item:hover {
  background: rgba(6, 190, 252, 0.1);
  color: #06befc;
  transform: translateY(-1px);
}

.navbar .nav-right .nav-item.primary {
  background: #06befc;
  color: #ffffff;
  box-shadow: none;
}

.navbar .nav-right .nav-item.primary:hover {
  background: #05a8d8;
  transform: none;
  box-shadow: none;
}

.navbar.finn-style .nav-right .nav-item {
  color: #000000;
  font-weight: 500;
}

.navbar.finn-style .nav-right .nav-item:hover {
  background: #f8f9fa;
  color: #000000;
}

.navbar.finn-style .nav-right .nav-item.primary {
  background: #06befc;
  color: #ffffff;
}

.navbar.finn-style .nav-right .nav-item.primary:hover {
  background: #05a8d8;
  color: #ffffff;
}

/* FINN.no Header Structure */
.navbar.finn-header {
  background: var(--w-s-color-background, #ffffff);
  border-bottom: 1px solid var(--w-s-color-border, #e5e5e5);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.2s ease;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

/* Logo Section */
.nav-logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  color: var(--w-s-color-text, #000000);
}

.logo-text {
  font-size: var(--w-font-size-2xl, 24px);
  font-weight: 600;
  color: var(--w-s-color-text, #000000);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Search Section */
.nav-search {
  flex: 1;
  max-width: 600px;
  margin: 0 2rem;
}

.search-form {
  width: 100%;
}

.search-input-group {
  display: flex;
  border: 1px solid var(--w-s-color-border, #e5e5e5);
  border-radius: 4px;
  overflow: hidden;
  background: var(--w-s-color-background, #ffffff);
  transition: all 0.2s ease;
}

.search-input-group:focus-within {
  border-color: var(--w-s-color-border-focus, #0066cc);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
  font-size: var(--w-font-size-m, 16px);
  background: var(--w-s-color-background, #ffffff);
  color: var(--w-s-color-text, #000000);
}

.search-input::placeholder {
  color: var(--w-s-color-text-placeholder, #999999);
}

.search-btn {
  padding: 0.75rem 1rem;
  background: var(--w-s-color-background, #ffffff);
  border: none;
  color: var(--w-s-color-icon-secondary, #666666);
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-btn:hover {
  background: var(--w-s-color-background-hover, #f8f9fa);
  color: var(--w-s-color-icon-subtle-hover, #333333);
}

/* Map Link */
.nav-map {
  flex-shrink: 0;
}

.map-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--w-s-color-text, #000000);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.map-link:hover {
  background: var(--w-s-color-background-hover, #f8f9fa);
  text-decoration: none;
  color: var(--w-s-color-text, #000000);
}

.map-text {
  font-weight: 600;
  font-size: var(--w-font-size-s, 14px);
}

/* User Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--w-s-color-text, #000000);
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: var(--w-font-size-s, 14px);
  font-weight: 500;
}

.nav-action:hover {
  background: var(--w-s-color-background-hover, #f8f9fa);
  text-decoration: none;
  color: var(--w-s-color-text, #000000);
}

.nav-action.primary {
  background: var(--w-s-bg-primary, #06befc);
  color: var(--w-s-color-background, #ffffff);
}

.nav-action.primary:hover {
  background: var(--w-s-bg-primary-hover, #05a8d8);
  color: var(--w-s-color-background, #ffffff);
}

.action-text {
  font-size: var(--w-font-size-s, 14px);
  font-weight: 500;
  color: #05a8d8;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--w-s-color-background, #ffffff);
  border: 1px solid var(--w-s-color-border, #e5e5e5);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 0.5rem 0;
  display: none;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--w-s-color-text, #000000);
  text-decoration: none;
  font-size: var(--w-font-size-s, 14px);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--w-s-color-background-hover, #f8f9fa);
  text-decoration: none;
  color: var(--w-s-color-text, #000000);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--w-s-color-text, #000000);
  font-size: var(--w-font-size-l, 18px);
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive Design for FINN.no Header */
@media (max-width: 768px) {
  .nav-content {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-search {
    order: 3;
    flex: 1 1 100%;
    margin: 0;
    max-width: none;
  }

  .nav-map {
    display: none;
  }

  .action-text {
    display: none;
  }

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

  .nav-actions {
    gap: 0.25rem;
  }

  .nav-action {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .nav-content {
    padding: 0.75rem 0;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .search-input {
    padding: 0.5rem 0.75rem;
    font-size: var(--w-font-size-s, 14px);
  }

  .search-btn {
    padding: 0.5rem 0.75rem;
  }
}

/* Page Container - FINN.no Structure */
.page-container {
  background-color: var(--w-s-color-background, #ffffff);
  max-width: 1010px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1300px) {
  .page-container {
    padding-left: 31px;
    padding-right: 31px;
  }
}

@media (max-width: 768px) {
  .navbar .nav-right .nav-item {
    padding: 8px 12px;
  }

  .navbar .nav-right .nav-item span {
    display: none;
  }
}

.navbar .nav-right .nav-item:hover {
  background: #f8f9fa;
  color: #06befc;
}

.navbar .nav-right .nav-item.primary {
  background-color: #06befc;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
}

.navbar .nav-right .nav-item.primary:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .nav-right .nav-item.primary:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 768px) {
  .navbar .nav-right .nav-item.primary {
    padding: 8px 12px;
  }

  .navbar .nav-right .nav-item.primary span {
    display: none;
  }
}

.navbar .nav-right .nav-item i {
  font-size: 18px;
}

.navbar .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #474445;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .navbar .mobile-menu-toggle {
    display: block;
  }
}

/* Main Content - FINN.no Style */
.main-content {
  padding: 2rem 0;
  background: #ffffff;
  min-height: 60vh;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-subtitle {
  font-size: 18px;
  color: #666666;
  font-weight: 400;
}

/* Markets Section - FINN.no Style */
.markets-section {
  margin-bottom: 3rem;
}

.markets-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.market-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  color: #000000;
  transition: all 0.2s ease;
}

.market-card:hover {
  border-color: #0066cc;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
  text-decoration: none;
  color: #000000;
}

.market-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.market-icon i {
  font-size: 24px;
  color: #666666;
}

.market-name {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* Recent Products - FINN.no Style */
.recent-products.finn-style {
  background: #f8f9fa;
  padding: 2rem 0;
}

.recent-products.finn-style .section-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.recent-products.finn-style .view-all {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.recent-products.finn-style .view-all:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Footer - FINN.no Style */
.footer.finn-style {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 2rem 0 1rem;
}

.footer.finn-style .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer.finn-style .footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer.finn-style .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer.finn-style .footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer.finn-style .footer-section ul li a {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer.finn-style .footer-section ul li a:hover {
  color: #0066cc;
  text-decoration: underline;
}

.footer.finn-style .footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
}

.footer.finn-style .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666666;
}

.footer.finn-style .footer-links a {
  color: #666666;
  text-decoration: none;
  margin-left: 1rem;
}

.footer.finn-style .footer-links a:hover {
  color: #0066cc;
  text-decoration: underline;
}

/* New FINN.no Footer Styles */
.border {
  border-width: 1px;
}

.footer-logo {
  width: 50px;
  height: auto;
}

.texti {
  font-size: 20px;

}

.border-t-1 {
  border-top-width: 1px;
}

.border-b-0 {
  border-bottom-width: 0;
}

.s-border {
  border-color: var(--w-s-color-border);
}

.pt-64 {
  padding-top: 6.4rem;
}

.s-bg {
  background-color: var(--w-s-color-background);
}

.s-text {
  color: var(--w-s-color-text);
}

.s-text-subtle {
  color: var(--w-s-color-text-subtle);
}

.s-icon {
  color: var(--w-s-color-icon);
}

.s-icon-secondary {
  color: var(--w-s-color-icon-secondary);
}

.s-bg-primary {
  background-color: var(--w-s-bg-primary);
}

.pageholder {
  margin: 0;
  padding: 0;
  width: 100%;
}

.max-w-screen-lg {
  /* max-width: 1200px; */
  width: 100%;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    'branding business about privacy support'
    'divider divider divider divider divider'
    'social social social copyrights copyrights';
  gap: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Desktop specific adjustments */
@media (min-width: 990px) {
  .content {
    /* gap: 3rem 2rem; */
    max-width: 1200px;
  }

  .branding {
    /* padding-right: 2rem; */
    margin-top: 4rem;
  }

  [style*="grid-area: business"],
  [style*="grid-area: about"],
  [style*="grid-area: privacy"],
  [style*="grid-area: support"] {
    padding-left: 1rem;
  }

  [style*="grid-area: social"] {
    justify-content: flex-start;
    align-items: center;
  }

  [style*="grid-area: copyrights"] {
    text-align: right;
    padding-left: 2rem;
  }

  /* Desktop Footer Typography - Smaller Font Sizes */
  [style*="grid-area: business"] h2,
  [style*="grid-area: about"] h2,
  [style*="grid-area: privacy"] h2,
  [style*="grid-area: support"] h2 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.2rem !important;
  }

  [style*="grid-area: business"] a,
  [style*="grid-area: about"] a,
  [style*="grid-area: privacy"] a,
  [style*="grid-area: support"] a {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.6rem !important;
  }

  /* Target specific link classes for even smaller size */
  [style*="grid-area: business"] .text.s-text.block,
  [style*="grid-area: about"] .text.s-text.block,
  [style*="grid-area: privacy"] .text.s-text.block,
  [style*="grid-area: support"] .text.s-text.block {
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.4rem !important;
  }

  /* Make all footer links even smaller */
  [style*="grid-area: business"] a.text,
  [style*="grid-area: about"] a.text,
  [style*="grid-area: privacy"] a.text,
  [style*="grid-area: support"] a.text {
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.4rem !important;
  }

  [style*="grid-area: copyrights"] p {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }

  [style*="grid-area: copyrights"] .mb-0 {
    font-size: 10px !important;
  }

  /* Branding section adjustments */
  .branding .text-22 {
    font-size: 1.8rem !important;
  }

  .branding .texti {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 989px) {
  .content {
    display: block;
    margin: 0;
    padding: 0 1.6rem;
  }

  .branding {
    text-align: center;
    margin-bottom: 3rem;
    padding-right: 0;
  }

  [style*="grid-area: business"],
  [style*="grid-area: about"],
  [style*="grid-area: privacy"],
  [style*="grid-area: support"] {
    margin-bottom: 2.5rem;
    text-align: center;
    padding-left: 0;
  }

  [style*="grid-area: social"] {
    text-align: center;
    margin: 3rem 0;
    justify-content: center;
  }

  [style*="grid-area: copyrights"] {
    text-align: center;
    margin-top: 2rem;
    padding-left: 0;
  }
}

.branding {
  grid-area: branding;
}

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

.pl-16 {
  padding-left: 1.6rem;
}

.mb-32 {
  margin-bottom: 3.2rem;
}

.text-22 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.text-14 {
  font-size: 1.4rem;
  line-height: 1.4;
}

.text-12 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.text-body {
  font-size: 1.6rem;
}

.text-detail {
  font-size: 1.4rem;
}

.lg\:text-left {
  text-align: left;
}

.lg\:pl-16 {
  padding-left: 1.6rem;
}

.lg\:ml-16 {
  margin-left: 1.6rem;
}

.lg\:my-32 {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}

.lg\:justify-start {
  justify-content: flex-start;
}

.lg\:-ml-4 {
  margin-left: -0.4rem;
}

.lg\:-mt-4 {
  margin-top: -0.4rem;
}

.lg\:inline {
  display: inline;
}

.lg\:mt-0 {
  margin-top: 0;
}

.mt-32 {
  margin-top: 3.2rem;
}

.mx-16 {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

.my-16 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.my-32 {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-0 {
  margin-bottom: 0;
}

.h4,
.t4 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
}

.space-y-8> :not([hidden])~ :not([hidden]) {
  margin-top: 0.8rem;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

.gap-x-40 {
  column-gap: 4rem;
}

.gap-y-4 {
  row-gap: 0.4rem;
}

.gap-8 {
  gap: 0.8rem;
}

.p-0 {
  padding: 0;
}

.p-4 {
  padding: 0.4rem;
}

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

.border-t {
  border-top-width: 1px;
}

.border-solid {
  border-style: solid;
}

.h-32 {
  height: 3.2rem;
}

.w-32 {
  width: 3.2rem;
}

.h-6 {
  height: 0.6rem;
}

.w-6 {
  width: 0.6rem;
}

.h-4 {
  height: 0.4rem;
}

.w-4 {
  width: 0.4rem;
}

.rounded-full {
  border-radius: 9999px;
}

.last\:hidden:last-child {
  display: none;
}

.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;
}

.place-self-center {
  place-self: center;
}

.place-self-start {
  place-self: start;
}

.brand-content {
  display: block;
}

.details {
  display: block;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.cookie-settings-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cookie-settings-btn:hover,
.cookie-settings-btn:focus,
.cookie-settings-btn:active {
  text-decoration: underline;
}

.fill-current {
  fill: currentColor;
}

/* Social Media Icons - Specific styling to prevent affecting other SVGs */
.social-icon {
  color: #000000;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 0.7;
}

.social-icon-path {
  fill: #000000 !important;
  stroke: none !important;
  transition: fill 0.2s ease;
}

.social-icon:hover .social-icon-path {
  fill: #333333 !important;
}

/* Newsletter Section - Compact Professional Design */
.newsletter {
  background: #f8fafc;
  padding: 2.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.6rem;
}

.newsletter-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.8rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.newsletter-content p {
  font-size: 1.4rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.newsletter-input-group:focus-within {
  border-color: #06befc;
  box-shadow: 0 0 0 2px rgba(6, 190, 252, 0.1);
}

.newsletter-input-group input {
  flex: 1;
  padding: 1.2rem 1.6rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: #2d3748;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #a0aec0;
  font-size: 1.4rem;
}

.newsletter-input-group button {
  padding: 1.2rem 2rem;
  background: #06befc;
  color: #ffffff;
  border: none;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-input-group button:hover {
  background: #05a8d8;
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .newsletter {
    padding: 3rem 0;
  }

  .newsletter-content {
    max-width: 450px;
  }

  .newsletter-content h2 {
    font-size: 2rem;
  }

  .newsletter-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .newsletter-input-group input {
    padding: 1.4rem 1.8rem;
    font-size: 1.5rem;
  }

  .newsletter-input-group input::placeholder {
    font-size: 1.5rem;
  }

  .newsletter-input-group button {
    padding: 1.4rem 2.5rem;
    font-size: 1.5rem;
  }
}

/* Desktop Responsive (1024px+) */
@media (min-width: 1024px) {
  .newsletter {
    padding: 3.5rem 0;
  }

  .newsletter-content {
    max-width: 480px;
  }

  .newsletter-content h2 {
    font-size: 2.2rem;
  }

  .newsletter-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }

  .newsletter-input-group input {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }

  .newsletter-input-group input::placeholder {
    font-size: 1.6rem;
  }

  .newsletter-input-group button {
    padding: 1.5rem 2.5rem;
    font-size: 1.6rem;
  }
}

/* Mobile Responsive (up to 767px) */
@media (max-width: 767px) {
  .newsletter {
    padding: 2rem 0;
  }

  .newsletter-content {
    padding: 0 1.2rem;
  }

  .newsletter-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .newsletter-content p {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 6px;
  }

  .newsletter-input-group input {
    padding: 1.2rem 1.4rem;
    font-size: 1.3rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .newsletter-input-group input::placeholder {
    font-size: 1.3rem;
  }

  .newsletter-input-group button {
    padding: 1.2rem 1.4rem;
    font-size: 1.3rem;
    border-radius: 0 0 6px 6px;
  }
}

/* Additional spacing classes for social media section */
.gap-x-35 {
  column-gap: 3.5rem;
}

/* FINN.no Style Navbar - Ultra Compact Version */
.navbar.finn-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.4rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Page container for navbar */
.navbar .page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  gap: 1rem;
}

/* Logo Section */
.nav-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #1a202c;
}

.logo-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #06befc;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Search Section */
.nav-search {
  flex: 1;
  max-width: 400px;
  margin: 0 1rem;
}

.search-form {
  width: 100%;
}

.search-input-group {
  display: flex;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: all 0.2s ease;
}

.search-input-group:focus-within {
  border: none;
  box-shadow: none;
}

.search-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  color: #2d3748;
  outline: none;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
}

.search-input:focus {
  border-bottom-color: #06befc;
  box-shadow: none;
}

.search-input::placeholder {
  color: #a0aec0;
  font-size: 1.2rem;
}

.search-btn {
  padding: 0.6rem 1rem;
  background: transparent;
  color: #06befc;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
}

.search-btn:hover {
  background: transparent;
  color: #05a8d8;
  border-bottom-color: #05a8d8;
}

.search-btn i {
  font-size: 1.1rem;
}

/* Search bar focus states and interactions */
.search-input:focus {
  outline: none;
}

.search-input-group:focus-within .search-input {
  color: #1a202c;
  border-bottom-color: #06befc;
}

.search-input-group:focus-within .search-btn {
  background: transparent;
  color: #05a8d8;
  border-bottom-color: #05a8d8;
}

/* Ensure search bar is visible and functional on desktop */
@media (min-width: 769px) {
  .nav-search {
    display: block !important;
  }

  .search-input-group {
    min-height: 3.6rem;
  }

  .search-input {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .search-btn {
    min-width: 4.4rem;
  }
}

/* User Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  text-decoration: none;
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-action:hover {
  background: #edf2f7;
  color: #2d3748;
}

.nav-action i {
  font-size: 1.2rem;
}

/* Primary action button styling */
.nav-action.primary {
  background: #06befc !important;
  color: #ffffff !important;
  border-color: #06befc !important;
}

.nav-action.primary:hover {
  background: #05a8d8 !important;
  border-color: #05a8d8 !important;
}

/* Action text styling */
.action-text {
  font-size: inherit;
  font-weight: inherit;
}

/* Dropdown menu styling */
.nav-action.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 1000;
  margin-top: 0.5rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #4a5568;
  text-decoration: none;
  font-size: 1.3rem;
  border-bottom: 1px solid #f7fafc;
  transition: all 0.2s ease;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f7fafc;
  color: #06befc;
}

.nav-action.dropdown:hover .dropdown-menu {
  display: block;
}

/* User profile link styling */
.user-profile {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: inherit;
}

.user-profile i {
  font-size: 1.4rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #4a5568;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: #f7fafc;
  color: #2d3748;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #4a5568;
  cursor: pointer;
}

.mobile-menu-content {
  padding: 2rem;
}

.mobile-search-section {
  margin-bottom: 2rem;
}

.mobile-search-input-group {
  display: flex;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
}

.mobile-search-input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  outline: none;
}

.mobile-search-btn {
  padding: 1rem 1.2rem;
  background: #06befc;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  text-decoration: none;
  color: #4a5568;
  font-size: 1.4rem;
  border-bottom: 1px solid #f7fafc;
}

.mobile-menu-item:hover {
  color: #06befc;
}

.mobile-menu-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 1rem 0;
}

/* Responsive Design - Comprehensive Breakpoints */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .nav-content {
    max-width: 1400px;
    padding: 0 2rem;
  }

  .nav-search {
    max-width: 500px;
  }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-content {
    padding: 0 1.6rem;
  }

  .nav-search {
    max-width: 450px;
  }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar.finn-header {
    padding: 0.3rem 0;
  }

  .nav-content {
    padding: 0 1.4rem;
    gap: 0.8rem;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-icon {
    width: 2rem;
    height: 2rem;
  }

  .logo-link {
    gap: 0.3rem;
  }

  .nav-search {
    max-width: 350px;
    margin: 0 0.8rem;
  }

  .search-input {
    padding: 0.5rem 0.8rem;
    font-size: 1.1rem;
  }

  .search-input::placeholder {
    font-size: 1.1rem;
  }

  .search-btn {
    padding: 0.5rem 0.8rem;
  }

  .search-btn i {
    font-size: 1rem;
  }

  .nav-action {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
  }

  .nav-action i {
    font-size: 1.1rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }
}

/* Mobile Large (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .navbar.finn-header {
    padding: 0.3rem 0;
  }

  .nav-content {
    padding: 0 1.2rem;
    gap: 0.6rem;
  }

  .nav-search {
    display: none;
  }

  .nav-actions .desktop-only {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 1.4rem;
    padding: 0.3rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .logo-link {
    gap: 0.3rem;
  }

  .nav-action {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
  }

  .nav-action i {
    font-size: 1.1rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }
}

/* Mobile Small (up to 480px) */
@media (max-width: 480px) {
  .navbar.finn-header {
    padding: 0.25rem 0;
  }

  .nav-content {
    padding: 0 1rem;
    gap: 0.4rem;
  }

  .nav-search {
    display: none;
  }

  .nav-actions .desktop-only {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 1.2rem;
    padding: 0.2rem;
  }

  .logo-icon {
    width: 2rem;
    height: 2rem;
  }

  .logo-link {
    gap: 0.2rem;
  }

  .nav-action {
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
  }

  .nav-action i {
    font-size: 1rem;
  }

  .nav-actions {
    gap: 0.3rem;
  }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
  .navbar.finn-header {
    padding: 0.2rem 0;
  }

  .nav-content {
    padding: 0 0.8rem;
    gap: 0.3rem;
  }

  .logo-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .logo-link {
    gap: 0.2rem;
  }

  .nav-action {
    padding: 0.25rem 0.4rem;
    font-size: 0.8rem;
  }

  .nav-action i {
    font-size: 0.9rem;
  }

  .nav-actions {
    gap: 0.2rem;
  }

  .mobile-menu-toggle {
    font-size: 1.1rem;
    padding: 0.15rem;
  }
}

.my-15 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Payment Summary Styles */
.payment-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.payment-summary h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item span:first-child {
  font-size: 1.3rem;
  color: #4a5568;
  font-weight: 500;
}

.summary-item .price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #06befc;
}

/* Error Message Styles */
.error-message {
  background: #fed7d7;
  border: 1px solid #feb2b2;
  color: #c53030;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
}

.error-message i {
  font-size: 1.4rem;
}

/* TinyMCE Rich Text Editor Styles */
.tox-tinymce {
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  margin-top: 0.5rem !important;
}

.tox-tinymce:hover {
  border-color: #06befc !important;
}

.tox .tox-toolbar__primary {
  background: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.tox .tox-edit-area__iframe {
  background: #ffffff !important;
}

.tox .tox-tbtn {
  color: #4a5568 !important;
}

.tox .tox-tbtn:hover {
  background: #e2e8f0 !important;
  color: #1a202c !important;
}

.tox .tox-tbtn--enabled {
  background: #06befc !important;
  color: #ffffff !important;
}

/* Product Description Display Styles */
.product-description-content {
  line-height: 1.6;
  color: #374151;
}

.product-description-content h1,
.product-description-content h2,
.product-description-content h3,
.product-description-content h4,
.product-description-content h5,
.product-description-content h6 {
  color: #1a202c;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.product-description-content h1 {
  font-size: 1.8rem;
}

.product-description-content h2 {
  font-size: 1.6rem;
}

.product-description-content h3 {
  font-size: 1.4rem;
}

.product-description-content h4 {
  font-size: 1.2rem;
}

.product-description-content h5 {
  font-size: 1.1rem;
}

.product-description-content h6 {
  font-size: 1rem;
}

.product-description-content p {
  margin-bottom: 1rem;
  color: #374151;
}

.product-description-content ul,
.product-description-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.product-description-content li {
  margin-bottom: 0.5rem;
  color: #374151;
}

.product-description-content strong,
.product-description-content b {
  font-weight: 600;
  color: #1a202c;
}

.product-description-content em,
.product-description-content i {
  font-style: italic;
}

.product-description-content a {
  color: #06befc;
  text-decoration: none;
}

.product-description-content a:hover {
  text-decoration: underline;
}

.product-description-content blockquote {
  border-left: 4px solid #06befc;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #6b7280;
}

.product-description-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.product-description-content th,
.product-description-content td {
  border: 1px solid #e2e8f0;
  padding: 0.8rem;
  text-align: left;
}

.product-description-content th {
  background: #f8fafc;
  font-weight: 600;
  color: #1a202c;
}

/* Form Helper Text Styles */
.form-text {
  font-size: 1.2rem;
  color: #6b7280;
  margin-top: 0.5rem;
  display: block;
}

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

/* Social media section styling */
[style*="grid-area: social"] {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

/* Override any conflicting styles for social media container */
[style*="grid-area: social"] .flex {
  justify-content: flex-start !important;
  align-items: center !important;
}

/* Mobile adjustments for social media */
@media (max-width: 989px) {
  [style*="grid-area: social"] .flex {
    justify-content: center !important;
  }
}

/* Desktop layout adjustments - moved to main desktop section above */

/* Responsive adjustments */
@media (max-width: 768px) {
  .content {
    display: block;
  }

  .lg\:text-left {
    text-align: center;
  }

  .lg\:pl-16 {
    padding-left: 0;
  }

  .lg\:ml-16 {
    margin-left: 0;
  }

  .lg\:justify-start {
    justify-content: center;
  }

  .lg\:inline {
    display: block;
  }

  .lg\:mt-0 {
    margin-top: 3.2rem;
  }
}

/* Product Page - FINN.no Style */
.breadcrumb.finn-style {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}

.breadcrumb.finn-style .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
}

.breadcrumb.finn-style .breadcrumb-nav a {
  color: #0066cc;
  text-decoration: none;
}

.breadcrumb.finn-style .breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb.finn-style .breadcrumb-nav i {
  color: #666666;
  font-size: 12px;
}

.breadcrumb.finn-style .breadcrumb-nav span {
  color: #000000;
  font-weight: 500;
}

.product-detail.finn-style {
  background: #ffffff;
  padding: 2rem 0;
}

.product-detail.finn-style .product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail.finn-style .product-title {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-detail.finn-style .product-price .price {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-detail.finn-style .product-meta {
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.product-detail.finn-style .meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: #666666;
}

.product-detail.finn-style .meta-item:last-child {
  margin-bottom: 0;
}

.product-detail.finn-style .meta-item i {
  width: 16px;
  color: #666666;
}

.product-detail.finn-style .product-actions {
  margin-top: 2rem;
}

.product-detail.finn-style .btn {
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.product-detail.finn-style .btn-primary {
  background: #0066cc;
  color: #ffffff;
  border: none;
}

.product-detail.finn-style .btn-primary:hover {
  background: #0052a3;
  color: #ffffff;
}

.product-detail.finn-style .btn-secondary {
  background: #ffffff;
  color: #0066cc;
  border: 1px solid #0066cc;
}

.product-detail.finn-style .btn-secondary:hover {
  background: #f8f9fa;
  color: #0052a3;
}

/* Category Page - FINN.no Style */
.category-header.finn-style {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 2rem 0;
}

.category-header.finn-style .category-info h1 {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-header.finn-style .category-info p {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.category-content.finn-style {
  background: #ffffff;
  padding: 2rem 0;
}

.category-content.finn-style .category-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-content.finn-style .filters-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}

.category-content.finn-style .filters-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-content.finn-style .filter-group {
  margin-bottom: 1.5rem;
}

.category-content.finn-style .filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.5rem;
}

.category-content.finn-style .filter-group input,
.category-content.finn-style .filter-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 14px;
  background: #ffffff;
}

.category-content.finn-style .filter-group input:focus,
.category-content.finn-style .filter-group select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.category-content.finn-style .price-range {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-content.finn-style .price-range input {
  flex: 1;
}

.category-content.finn-style .price-range span {
  color: #666666;
  font-weight: 500;
}

/* Search Page - Clean & Professional Design */
.search-page {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 2rem 0;
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Search Filters */
.search-filters {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filters-form {
  width: 100%;
}

.filter-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-item {
  flex: 1;
  min-width: 200px;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #ffffff;
}

.search-input:focus {
  outline: none;
  border-color: #06befc;
  box-shadow: 0 0 0 3px rgba(6, 190, 252, 0.1);
}

.filter-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-select:focus {
  outline: none;
  border-color: #06befc;
  box-shadow: 0 0 0 3px rgba(6, 190, 252, 0.1);
}

.filter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #ffffff;
}

.filter-input:focus {
  outline: none;
  border-color: #06befc;
  box-shadow: 0 0 0 3px rgba(6, 190, 252, 0.1);
}

.search-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
}

/* Advanced Filters */
.advanced-filters {
  margin-top: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.toggle-advanced {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.toggle-advanced:hover {
  color: #06befc;
}

.toggle-advanced .fa-chevron-down {
  transition: transform 0.2s ease;
}

.advanced-content {
  display: none;
  margin-top: 1rem;
}

/* Search Results */
.search-results {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.results-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.results-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.results-header p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Mobile Products Grid - 2 per row */
@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #06befc;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f9fafb;
}

/* Search page specific product images - override avatar styles */
.search-product-image {
  position: relative !important;
  width: 100% !important;
  height: 200px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #f9fafb !important;
  flex-shrink: unset !important;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
}

.search-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
  border-radius: 0 !important;
  object-position: center !important;
}

/* Profile page specific product images - square/rectangular */
.profile-product-image {
  position: relative !important;
  width: 100% !important;
  height: 200px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #f9fafb !important;
}

.profile-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  transition: transform 0.3s ease !important;
}

.profile-product-image .no-image {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f3f4f6 !important;
  border-radius: 0 !important;
}

.profile-product-image .no-image i {
  font-size: 48px !important;
  color: #9ca3af !important;
}

/* Dashboard Product Images - Square/Rectangular */
.dashboard-product-image {
  position: relative !important;
  width: 90px !important;
  height: 90px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #f9fafb !important;
  flex-shrink: 0 !important;
  border: 2px solid #e5e7eb !important;
  transition: all 0.3s ease !important;
}

.dashboard-product-image:hover {
  border-color: #06befc !important;
  transform: scale(1.05) !important;
}

.dashboard-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 6px !important;
  transition: transform 0.3s ease !important;
}

.dashboard-product-image:hover img {
  transform: scale(1.1) !important;
}

.dashboard-product-image .no-image {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
  border-radius: 6px !important;
  position: relative !important;
}

.dashboard-product-image .no-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%239ca3af" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"/><circle cx="8.5" cy="8.5" r="1.5"/><polyline points="21,15 16,10 5,21"/></svg>') no-repeat center;
  background-size: 24px 24px;
  opacity: 0.3;
}

.dashboard-product-image .no-image i {
  font-size: 28px !important;
  color: #9ca3af !important;
  z-index: 1;
}

/* Dashboard Product Items Styling */
.profile-products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-product-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.profile-product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #06befc 0%, #0489b8 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-product-item:hover {
  border-color: #06befc;
  box-shadow: 0 4px 20px rgba(6, 190, 252, 0.15);
  transform: translateY(-2px);
}

.profile-product-item:hover::before {
  opacity: 1;
}

.profile-product-info {
  flex: 1;
  min-width: 0;
}

.profile-product-info h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.profile-product-info h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.profile-product-info h3 a:hover {
  color: #06befc;
}

.profile-product-price {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #06befc;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-product-price::before {
  content: '€';
  font-size: 0.875rem;
  opacity: 0.8;
}

.profile-product-status {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
}

.profile-product-status.status-published {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

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

.profile-product-status.status-draft {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.profile-product-actions {
  flex-shrink: 0;
}

.profile-btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 80px;
}

.profile-btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Edit Profile Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #ffffff;
  margin: 1% auto;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  max-height: 85vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.modal-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  max-height: calc(85vh - 120px);
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

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

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Ensure modal body can scroll properly */
.modal-body {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Fix for Firefox */
@-moz-document url-prefix() {
  .modal-body {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
  }
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  border-radius: 0 0 12px 12px;
  flex-shrink: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06befc;
  box-shadow: 0 0 0 3px rgba(6, 190, 252, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #06befc 0%, #0489b8 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0489b8 0%, #036a8a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
  color: #111827;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    margin: 1% auto;
    width: 95%;
    max-width: 380px;
    max-height: 90vh;
  }

  .modal-header {
    padding: 0.75rem 1rem;
  }

  .modal-header h2 {
    font-size: 1.25rem;
  }

  .modal-body {
    padding: 1rem;
    max-height: calc(90vh - 110px);
    min-height: 0;
  }

  .modal-footer {
    padding: 0.75rem 1rem;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 0.625rem 1rem;
  }

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

  .form-group input,
  .form-group textarea {
    padding: 0.5rem;
  }

  .form-group textarea {
    min-height: 70px;
  }
}

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

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

.no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 48px;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.featured {
  background: #ffc107;
  color: #ffffff;
}

.badge.urgent {
  background: #dc3545;
  color: #ffffff;
}

.product-details {
  padding: 1.25rem;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #06befc;
  margin: 0 0 0.5rem 0;
}

.product-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 0.75rem 0;
}

.product-location i {
  font-size: 12px;
  color: #9ca3af;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
}

.product-category {
  background: #f3f4f6;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
}

.product-views {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-views i {
  font-size: 10px;
}

/* No Products */
.no-products {
  text-align: center;
  padding: 4rem 2rem;
}

.no-products-content i {
  font-size: 64px;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.no-products-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem 0;
}

.no-products-content p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 1.5rem 0;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.pagination-numbers {
  display: flex;
  gap: 0.25rem;
}

.pagination-number {
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.pagination-number:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.pagination-number.active {
  background: #06befc;
  border-color: #06befc;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 767px) {
  .search-page {
    padding: 1rem 0;
  }

  .search-container {
    padding: 0 0.75rem;
  }

  .search-filters {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .filter-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .filter-item {
    min-width: auto;
    width: 100%;
  }

  .search-input,
  .filter-select,
  .filter-input {
    padding: 0.6rem 0.8rem;
    font-size: 13px;
  }

  .search-btn {
    padding: 0.6rem 1.25rem;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .search-results {
    padding: 1rem;
  }

  .results-header h2 {
    font-size: 20px;
  }

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

  .product-image {
    height: 160px;
  }

  .product-details {
    padding: 1rem;
  }



  .product-title {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }

  .product-price {
    font-size: 16px;
    margin-bottom: 0.25rem;
  }

  .product-location {
    font-size: 12px;
    margin-bottom: 0.5rem;
  }

  .product-meta {
    font-size: 11px;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .pagination-btn,
  .pagination-number {
    padding: 0.4rem 0.6rem;
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
  }

  .product-image {
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

/* Recent Page - FINN.no Style */
.recent-header.finn-style {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 2rem 0;
}

.recent-header.finn-style .recent-info h1 {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.recent-header.finn-style .recent-info p {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.recent-content.finn-style {
  background: #ffffff;
  padding: 2rem 0;
}

/* Profile Page - Professional & Clean Design */
.profile-page {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Profile Header */
.profile-header-section {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0;
}

.profile-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.profile-header-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.profile-avatar-section {
  flex-shrink: 0;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar .default-avatar {
  font-size: 48px;
  color: #9ca3af;
}

.profile-info-section {
  flex: 1;
}

.profile-name {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.profile-email {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 0.25rem 0;
}

.profile-member-since {
  font-size: 14px;
  color: #9ca3af;
  margin: 0 0 1rem 0;
}

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

.profile-stars {
  display: flex;
  gap: 0.25rem;
}

.profile-stars .star {
  font-size: 16px;
  color: #d1d5db;
}

.profile-stars .star.active {
  color: #fbbf24;
}

.profile-rating-text {
  font-size: 14px;
  color: #6b7280;
}

.profile-actions-section {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.profile-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-size: 14px;
}

.profile-btn-primary {
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  color: #ffffff;
  border: none;
}

.profile-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
}

.profile-btn-outline {
  background: #ffffff;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.profile-btn-outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
}

/* Profile Navigation */
.profile-nav-section {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}

.profile-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.profile-nav-tabs {
  display: flex;
  gap: 0;
}

.profile-nav-tab {
  padding: 1rem 1.5rem;
  color: #6b7280;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 14px;
}

.profile-nav-tab:hover {
  color: #06befc;
  background: #f8f9fa;
}

.profile-nav-tab.active {
  color: #06befc;
  border-bottom-color: #06befc;
  background: #f8f9fa;
}

.profile-nav-tab i {
  font-size: 16px;
}

/* Profile Content */
.profile-content-section {
  padding: 2rem 0;
  min-height: 60vh;
}

.profile-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Dashboard Styles */
.profile-dashboard {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.profile-stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
}

.profile-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #06befc;
}

.profile-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.profile-stat-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem 0;
}

.profile-stat-info p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

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

.profile-dashboard-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
}

.profile-dashboard-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.profile-products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.profile-product-item:hover {
  border-color: #06befc;
  background: #f8f9fa;
}

.profile-product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
  flex-shrink: 0;
}

.profile-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-product-image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 20px;
}

.profile-product-info {
  flex: 1;
}

.profile-product-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
}

.profile-product-info h3 a {
  color: inherit;
  text-decoration: none;
}

.profile-product-info h3 a:hover {
  color: #06befc;
}

.profile-product-price {
  font-size: 16px;
  font-weight: 700;
  color: #06befc;
  margin: 0 0 0.25rem 0;
}

.profile-product-status {
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-product-status.status-published {
  background: #d1fae5;
  color: #065f46;
}

.profile-product-status.status-draft {
  background: #fef3c7;
  color: #92400e;
}

.profile-product-status.status-sold {
  background: #dbeafe;
  color: #1e40af;
}

.profile-product-actions {
  display: flex;
  gap: 0.5rem;
}

.profile-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 12px;
  border-radius: 6px;
}

/* Profile Inquiries List */
.profile-inquiries-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-inquiry-item {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.2s ease;
}

.profile-inquiry-item:hover {
  border-color: #06befc;
  background: #f8f9fa;
}

.profile-inquiry-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.profile-inquiry-info h4 a {
  color: inherit;
  text-decoration: none;
}

.profile-inquiry-info h4 a:hover {
  color: #06befc;
}

.profile-inquiry-meta {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
}

.profile-inquiry-message {
  font-size: 14px;
  color: #374151;
  margin: 0;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 6px;
  border-left: 3px solid #06befc;
}

/* Footer Styles */
.profile-footer {
  background: #1f2937;
  color: #ffffff;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}

.profile-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.profile-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.profile-footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.profile-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-footer-section ul li {
  margin-bottom: 0.5rem;
}

.profile-footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.profile-footer-section ul li a:hover {
  color: #06befc;
}

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

.profile-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #374151;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.profile-social-links a:hover {
  background: #06befc;
  transform: translateY(-2px);
}

.profile-footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

.profile-footer-bottom p {
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
}

/* Empty State Styles */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #9ca3af;
  font-size: 32px;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.empty-state p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 2rem 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state .profile-btn {
  margin-top: 1rem;
}

/* Profile Page Responsive Styles */
@media (max-width: 768px) {
  .profile-page {
    padding: 0;
  }

  .profile-header-section {
    padding: 1.5rem 0;
  }

  .profile-header-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .profile-avatar {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 24px;
  }

  .profile-actions-section {
    flex-direction: column;
    width: 100%;
  }

  .profile-btn {
    width: 100%;
    justify-content: center;
  }

  .profile-nav-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .profile-nav-tab {
    padding: 0.75rem 1rem;
    font-size: 13px;
    white-space: nowrap;
    min-width: auto;
  }

  .profile-nav-tab i {
    font-size: 14px;
  }

  .profile-content-section {
    padding: 1rem 0;
  }

  .profile-dashboard {
    padding: 1rem;
  }

  .profile-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .profile-stat-card {
    padding: 1rem;
  }

  .profile-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .profile-stat-info h3 {
    font-size: 24px;
  }

  .profile-product-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .profile-product-image {
    width: 80px;
    height: 80px;
  }

  /* Profile page product images responsive */
  .profile-product-image {
    height: 150px !important;
  }

  /* Dashboard product items responsive */
  .profile-product-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  .dashboard-product-image {
    width: 80px !important;
    height: 80px !important;
    align-self: center;
  }

  .profile-product-info {
    text-align: center;
  }

  .profile-product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .profile-product-price {
    font-size: 0.875rem;
    justify-content: center;
    margin-bottom: 0.75rem;
  }

  .profile-product-status {
    margin: 0 auto 0.75rem auto;
  }

  .profile-product-actions {
    width: 100%;
  }

  .profile-btn-sm {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  /* Profile page products grid - 2 per row on mobile */
  .profile-page .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .profile-page .product-card {
    margin-bottom: 0 !important;
  }

  .profile-footer {
    padding: 2rem 0 1rem 0;
  }

  /* Mobile Search Bar */
  .mobile-search-section {
    padding: 0rem 0rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
  }

  /* Mobile Category Icons - Bigger */
  .s-icon-secondary {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .s-icon-secondary svg,
  .s-icon-secondary img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }

  /* Make rent-a-car icon larger on mobile */
  .s-icon-secondary img[src*="kerri-kuq.png"] {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
  }

  /* Mobile Category Text - Bigger */
  .text-16 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    margin-top: 12px !important;
  }

  /* Mobile Category Grid - Adjust spacing for bigger icons */
  .market-grid__item {
    padding: 0px 0px !important;
    min-height: 100px !important;
  }

  .market-grid__item a {
    padding: 0px 0px !important;
    gap: 0px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100px !important;
  }

  /* Mobile Category Grid - Make grid items bigger */
  .grid-flow-col {
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr)) !important;
    gap: 0px !important;
  }

  .mobile-search-form {
    width: 100%;
  }

  .mobile-search-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.0);
  }

  .mobile-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 0.875rem;
    background: transparent;
    color: #374151;
  }

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

  .mobile-search-btn {
    padding: 0.75rem 1rem;
    background: #06befc;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-search-btn:hover {
    background: #0489b8;
  }

  .mobile-search-btn i {
    font-size: 0.875rem;
  }

  .profile-footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .profile-header-section {
    padding: 1rem 0;
  }

  .profile-avatar {
    width: 80px;
    height: 80px;
  }

  .profile-name {
    font-size: 20px;
  }

  .profile-nav-tab {
    padding: 0.5rem 0.75rem;
    font-size: 12px;
  }

  .profile-nav-tab span {
    display: none;
  }

  .profile-nav-tab i {
    margin-right: 0;
  }

  .profile-dashboard {
    padding: 0.75rem;
  }

  .profile-stat-card {
    padding: 0.75rem;
  }

  .profile-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .profile-stat-info h3 {
    font-size: 20px;
  }
}

.hero {
  background: linear-gradient(135deg, #06befb 0%, #0891b2 100%);
  color: #ffffff;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}

.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

@media (max-width: 1024px) {
  .hero .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

.hero .hero-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 18px;
  }
}

.hero .hero-content .hero-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-stats {
    gap: 20px;
  }
}

.hero .hero-content .hero-stats .stat {
  text-align: center;
}

.hero .hero-content .hero-stats .stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-stats .stat .stat-number {
    font-size: 24px;
  }
}

.hero .hero-content .hero-stats .stat .stat-label {
  font-size: 16px;
  opacity: 0.8;
}

.hero .hero-image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.categories {
  padding: 80px 0;
  background: #ffffff;
}

@media (max-width: 768px) {
  .categories {
    padding: 60px 0;
  }
}

.categories h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1b1b1f;
}

@media (max-width: 768px) {
  .categories h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

.categories .categories-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .categories .categories-grid {
    -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
}

.categories .categories-grid .category-card {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 32px 20px;
  text-decoration: none;
  color: #474445;
  min-height: 160px;
}

.categories .categories-grid .category-card:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .categories .categories-grid .category-card {
    padding: 24px 16px;
    min-height: 140px;
  }
}

.categories .categories-grid .category-card .category-icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(6, 190, 251, 0.1);
  border-radius: 50%;
  margin-bottom: 16px;
}

.categories .categories-grid .category-card .category-icon i {
  font-size: 28px;
  color: #06befb;
}

.categories .categories-grid .category-card .category-name {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.categories .categories-grid .category-card:hover .category-icon {
  background: #06befb;
}

.categories .categories-grid .category-card:hover .category-icon i {
  color: #ffffff;
}

.recent-products {
  padding: 80px 0;
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .recent-products {
    padding: 60px 0;
  }
}

.recent-products .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .recent-products .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.recent-products .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1b1b1f;
}

@media (max-width: 768px) {
  .recent-products .section-header h2 {
    font-size: 28px;
  }
}

.recent-products .section-header .view-all {
  background-color: transparent;
  color: #06befb;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border: 2px solid #06befb;
}

.recent-products .section-header .view-all:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.recent-products .section-header .view-all:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.recent-products .section-header .view-all:hover {
  background: #06befb;
  color: #ffffff;
}

.recent-products .products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .recent-products .products-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
}

.recent-products .products-grid .product-card {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.recent-products .products-grid .product-card:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.recent-products .products-grid .product-card .product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.recent-products .products-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.recent-products .products-grid .product-card .product-image .no-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  color: #5c5c66;
}

.recent-products .products-grid .product-card .product-image .no-image i {
  font-size: 48px;
}

.recent-products .products-grid .product-card .product-image .product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.recent-products .products-grid .product-card .product-image .product-badges .badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.recent-products .products-grid .product-card .product-image .product-badges .badge.featured-badge {
  background: #ffc107;
  color: #ffffff;
}

.recent-products .products-grid .product-card .product-image .product-badges .badge.urgent-badge {
  background: #dc3545;
  color: #ffffff;
}

.recent-products .products-grid .product-card .product-info {
  padding: 20px;
}

.recent-products .products-grid .product-card .product-info .product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #1b1b1f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-products .products-grid .product-card .product-info .product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}

.recent-products .products-grid .product-card .product-info .product-meta .product-price {
  font-size: 20px;
  font-weight: 700;
  color: #06befb;
}

.recent-products .products-grid .product-card .product-info .product-meta .product-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  color: #5c5c66;
}

.recent-products .products-grid .product-card .product-info .product-meta .product-location i {
  font-size: 12px;
}

.recent-products .products-grid .product-card .product-info .product-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  color: #5c5c66;
}

.recent-products .products-grid .product-card .product-info .product-stats .views {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
}

.recent-products .products-grid .product-card .product-info .product-stats .views i {
  font-size: 12px;
}

.recent-products .products-grid .product-card:hover .product-image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.newsletter {
  background: #1b1b1f;
  color: #ffffff;
  padding: 60px 0;
}

.newsletter .newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter .newsletter-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .newsletter .newsletter-content h2 {
    font-size: 24px;
  }
}

.newsletter .newsletter-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  outline: none;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group input::-webkit-input-placeholder {
  color: #5c5c66;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group input:-ms-input-placeholder {
  color: #5c5c66;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group input::-ms-input-placeholder {
  color: #5c5c66;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group input::placeholder {
  color: #5c5c66;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group button {
  background-color: #06befb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 0;
  padding: 16px 24px;
  white-space: nowrap;
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group button:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newsletter .newsletter-content .newsletter-form .newsletter-input-group button:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.footer {
  background: #1b1b1f;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer .footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr 1fr 1fr;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .footer .footer-content {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer .footer-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

.footer .footer-content .footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer .footer-content .footer-section .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer .footer-content .footer-section .footer-logo img {
  width: 40px;
  height: 40px;
}

.footer .footer-content .footer-section .footer-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #06befb;
}

.footer .footer-content .footer-section p {
  margin-bottom: 20px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer .footer-content .footer-section .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

.footer .footer-content .footer-section .social-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .footer-content .footer-section .social-links a:hover {
  background: #06befb;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.footer .footer-content .footer-section ul {
  list-style: none;
}

.footer .footer-content .footer-section ul li {
  margin-bottom: 12px;
}

.footer .footer-content .footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .footer-content .footer-section ul li a:hover {
  opacity: 1;
  color: #06befb;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer .footer-bottom .footer-bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer .footer-bottom .footer-bottom-content p {
  opacity: 0.8;
}

.footer .footer-bottom .footer-bottom-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.footer .footer-bottom .footer-bottom-content .footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .footer-bottom .footer-bottom-content .footer-links a:hover {
  opacity: 1;
  color: #06befb;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay .mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #ffffff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-overlay .mobile-menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header span {
  font-size: 20px;
  font-weight: 600;
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header .mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #474445;
  cursor: pointer;
}

.mobile-menu-overlay .mobile-menu .mobile-menu-content {
  padding: 20px;
}

.mobile-menu-overlay .mobile-menu .mobile-menu-content .mobile-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
  text-decoration: none;
  color: #474445;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-overlay .mobile-menu .mobile-menu-content .mobile-menu-item:hover {
  color: #06befb;
}

.mobile-menu-overlay .mobile-menu .mobile-menu-content .mobile-menu-item i {
  font-size: 20px;
  width: 24px;
}

.mobile-menu-overlay .mobile-menu .mobile-menu-content .mobile-menu-item span {
  font-size: 16px;
  font-weight: 500;
}

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

.text-left {
  text-align: left;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

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

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
}

.product-page .navbar {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.breadcrumb .breadcrumb-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb .breadcrumb-nav a {
  color: #06befb;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.breadcrumb .breadcrumb-nav a:hover {
  color: #05a8d8;
}

.breadcrumb .breadcrumb-nav i {
  color: #6c757d;
  font-size: 0.8rem;
}

.breadcrumb .breadcrumb-nav span {
  color: #6c757d;
}

.product-detail {
  padding: 2rem 0;
}

.product-detail .product-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .product-detail .product-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-images .main-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f8f9fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-images .main-image.no-image {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #6c757d;
}

.product-images .main-image.no-image i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-images .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-images .image-thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-images .image-thumbnails .thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.product-images .image-thumbnails .thumbnail.active {
  border-color: #06befb;
}

.product-images .image-thumbnails .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-info .product-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

@media (max-width: 768px) {
  .product-info .product-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.product-info .product-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .product-info .product-title {
    font-size: 1.5rem;
  }
}

.product-info .product-price {
  margin-bottom: 1.5rem;
}

.product-info .product-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: #06befb;
  display: block;
}

.product-info .product-price .negotiable {
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
}

.product-info .product-meta {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .product-info .product-meta {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.product-info .product-meta .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.product-info .product-meta .meta-item i {
  color: #06befb;
  width: 16px;
}

.product-info .product-condition,
.product-info .product-specs {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-info .product-condition .spec-item,
.product-info .product-specs .spec-item {
  margin-bottom: 0.5rem;
}

.product-info .product-condition .spec-item:last-child,
.product-info .product-specs .spec-item:last-child {
  margin-bottom: 0;
}

.product-info .product-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .product-info .product-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.product-info .product-actions .btn-large {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 150px;
}

.product-description {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-description h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.product-description .description-content {
  line-height: 1.6;
  color: #474445;
}

.seller-info {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seller-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.seller-info .seller-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .seller-info .seller-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.seller-info .seller-details .seller-name,
.seller-info .seller-details .seller-since {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
}

.seller-info .seller-details .seller-name i,
.seller-info .seller-details .seller-since i {
  color: #06befb;
}

.related-products h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
}


.modal.show {
  display: block;
}



.modal .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.modal .modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
}

.modal .modal-header .modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.modal .modal-header .modal-close:hover {
  background-color: #f8f9fa;
}

.modal .modal-body {
  padding: 1.5rem;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-info .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.contact-info .contact-item i {
  color: #06befb;
  width: 20px;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #000000;
}

.contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #06befb;
  -webkit-box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

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

@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

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

.product-page .navbar .nav-brand .logo {
  height: 40px;
}

@media (max-width: 768px) {
  .product-detail .product-layout {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-images .main-image {
    height: 300px;
  }

  .product-images .image-thumbnails .thumbnail {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .product-info .product-actions .btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .seller-info .seller-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .related-products .products-grid {
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

.product-detail .product-info .product-price .price {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .product-detail .product-info .product-price .price {
    font-size: 2rem;
  }
}

.product-detail .product-info .product-meta .meta-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}

.product-detail .product-info .product-meta .meta-item:last-child {
  border-bottom: none;
}



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

.contact-form .form-group label {
  font-weight: 600;
  color: #000000;
}

.contact-form .form-group textarea {
  min-height: 120px;
  border: 2px solid #e0e0e0;
}

.contact-form .form-group textarea:focus {
  border-color: #06befb;
  -webkit-box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.category-header {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.category-header .category-info h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.category-header .category-info p {
  color: #6c757d;
  font-size: 1rem;
}

.category-content {
  padding: 2rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.category-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .category-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.filters-sidebar .filters-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
}

.filters-sidebar .filters-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
}

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

.filters-form .filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #000000;
  font-size: 0.9rem;
}

.filters-form .filter-group input,
.filters-form .filter-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.filters-form .filter-group input:focus,
.filters-form .filter-group select:focus {
  outline: none;
  border-color: #06befb;
  -webkit-box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
}

.filters-form .filter-group .price-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.filters-form .filter-group .price-range input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.filters-form .filter-group .price-range span {
  color: #6c757d;
  font-weight: 500;
}

.filters-form .filter-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.filters-form .filter-actions .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.products-content .products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .products-content .products-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination .pagination-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #474445;
  text-decoration: none;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination .pagination-btn:hover {
  background: #06befb;
  color: #ffffff;
  border-color: #06befb;
}

.pagination .pagination-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}

.pagination .pagination-numbers .pagination-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #474445;
  text-decoration: none;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination .pagination-numbers .pagination-number:hover {
  background: #06befb;
  color: #ffffff;
  border-color: #06befb;
}

.pagination .pagination-numbers .pagination-number.active {
  background: #06befb;
  color: #ffffff;
  border-color: #06befb;
}

.no-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 400px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-products .no-products-content {
  text-align: center;
  max-width: 400px;
  padding: 2rem;
}

.no-products .no-products-content i {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.no-products .no-products-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.no-products .no-products-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.search-header {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.search-header .search-info h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.search-header .search-info p {
  color: #6c757d;
  font-size: 1rem;
}

.search-content {
  padding: 2rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.search-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .search-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.results-content .products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .results-content .products-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.recent-header {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.recent-header .recent-info h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.recent-header .recent-info p {
  color: #6c757d;
  font-size: 1rem;
}

.recent-content {
  padding: 2rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.recent-content .products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .recent-content .products-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.product-card .product-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.product-card .product-date i {
  font-size: 0.7rem;
}

.post-product {
  padding: 2rem 0;
  background: #f8f9fa;
  min-height: 80vh;
}

.post-product .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.post-product .form-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.post-product .form-header p {
  color: #6c757d;
  font-size: 1rem;
}

.product-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.product-form .form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .product-form .form-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-form .form-section.full-width {
  grid-column: 1 / -1;
}

.product-form .form-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #06befb;
}

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

.product-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #000000;
  font-size: 0.9rem;
}

.product-form .form-group input,
.product-form .form-group select,
.product-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.product-form .form-group input:focus,
.product-form .form-group select:focus,
.product-form .form-group textarea:focus {
  outline: none;
  border-color: #06befb;
  -webkit-box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
}

.product-form .form-group input::-webkit-input-placeholder,
.product-form .form-group select::-webkit-input-placeholder,
.product-form .form-group textarea::-webkit-input-placeholder {
  color: #6c757d;
}

.product-form .form-group input:-ms-input-placeholder,
.product-form .form-group select:-ms-input-placeholder,
.product-form .form-group textarea:-ms-input-placeholder {
  color: #6c757d;
}

.product-form .form-group input::-ms-input-placeholder,
.product-form .form-group select::-ms-input-placeholder,
.product-form .form-group textarea::-ms-input-placeholder {
  color: #6c757d;
}

.product-form .form-group input::placeholder,
.product-form .form-group select::placeholder,
.product-form .form-group textarea::placeholder {
  color: #6c757d;
}

.product-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.product-form .form-group.checkbox-group .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
}

.product-form .form-group.checkbox-group .checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.product-form .form-group.checkbox-group .checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-form .form-group.checkbox-group .checkbox-label .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.product-form .form-group.checkbox-group .checkbox-label input[type="checkbox"]:checked+.checkmark {
  background-color: #06befb;
  border-color: #06befb;
}

.product-form .form-group.checkbox-group .checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  opacity: 1;
}

.product-form .file-input {
  display: none;
}

.product-form .file-input-info {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.product-form .file-input-info:hover {
  border-color: #06befb;
  background-color: rgba(6, 190, 251, 0.05);
}

.product-form .file-input-info i {
  font-size: 2rem;
  color: #06befb;
  margin-bottom: 1rem;
}

.product-form .file-input-info p {
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.5rem;
}

.product-form .file-input-info small {
  color: #6c757d;
  font-size: 0.8rem;
}

.product-form .image-preview {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(150px, 1fr))[auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-form .image-preview .preview-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.product-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
  .product-form .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.product-form .form-actions .btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.alert.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert.alert-success i {
  color: #28a745;
}

.alert.alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.alert.alert-error i {
  color: #dc3545;
}

.profile-header {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.profile-header .profile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .profile-header .profile-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.profile-header .profile-info .profile-avatar .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 4px solid #06befb;
}

.profile-header .profile-info .profile-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.profile-header .profile-info .profile-details h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.profile-header .profile-info .profile-details .profile-email {
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.profile-header .profile-info .profile-details .profile-member-since {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.profile-header .profile-info .profile-details .profile-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.profile-header .profile-info .profile-details .profile-rating .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}

.profile-header .profile-info .profile-details .profile-rating .stars i {
  color: #ddd;
  font-size: 1rem;
}

.profile-header .profile-info .profile-details .profile-rating .stars i.active {
  color: #ffc107;
}

.profile-header .profile-info .profile-details .profile-rating .rating-text {
  color: #6c757d;
  font-size: 0.9rem;
}

.profile-header .profile-info .profile-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .profile-header {
    padding: 1.5rem 0;
  }

  .profile-header .profile-info .profile-avatar .avatar {
    width: 80px;
    height: 80px;
  }

  .profile-header .profile-info .profile-details h1 {
    font-size: 1.5rem;
  }

  .profile-header .profile-info .profile-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .profile-header {
    padding: 1rem 0;
  }

  .profile-header .profile-info .profile-avatar .avatar {
    width: 60px;
    height: 60px;
  }

  .profile-header .profile-info .profile-details h1 {
    font-size: 1.25rem;
  }

  .profile-header .profile-info .profile-details .profile-email {
    font-size: 0.9rem;
  }

  .profile-header .profile-info .profile-details .profile-member-since {
    font-size: 0.8rem;
  }
}

.profile-nav {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.profile-nav .profile-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}

@media (max-width: 768px) {
  .profile-nav .profile-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }

  .profile-nav .profile-tabs .tab {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: auto;
  }

  .profile-nav .profile-tabs .tab i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .profile-nav .profile-tabs .tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .profile-nav .profile-tabs .tab i {
    font-size: 0.8rem;
    margin-right: 0.25rem;
  }

  .profile-nav .profile-tabs .tab span {
    display: none;
  }

  .profile-nav .profile-tabs .tab i {
    margin-right: 0;
  }
}

.profile-nav .profile-tabs .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  color: #6c757d;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.profile-nav .profile-tabs .tab:hover {
  color: #06befb;
  background-color: rgba(6, 190, 251, 0.05);
}

.profile-nav .profile-tabs .tab.active {
  color: #06befb;
  border-bottom-color: #06befb;
  background-color: rgba(6, 190, 251, 0.05);
}

.profile-nav .profile-tabs .tab i {
  font-size: 1rem;
}

.profile-content {
  padding: 2rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.dashboard .stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard .stats-grid .stat-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.dashboard .stats-grid .stat-card .stat-icon {
  width: 60px;
  height: 60px;
  background: #06befb;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.dashboard .stats-grid .stat-card .stat-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.dashboard .stats-grid .stat-card .stat-info p {
  color: #6c757d;
  font-size: 0.9rem;
}

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

/* Profile Dashboard Responsive Styles */
@media (max-width: 1024px) {
  .dashboard .dashboard-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .dashboard .stats-grid {
    -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .dashboard .stats-grid .stat-card {
    padding: 1rem;
  }

  .dashboard .stats-grid .stat-card .stat-icon {
    width: 50px;
    height: 50px;
  }

  .dashboard .stats-grid .stat-card .stat-info h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .profile-content {
    padding: 1rem 0;
  }

  .dashboard .stats-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .dashboard .stats-grid .stat-card {
    padding: 0.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .dashboard .stats-grid .stat-card .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }

  .dashboard .stats-grid .stat-card .stat-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
  }

  .dashboard .stats-grid .stat-card .stat-info p {
    font-size: 0.8rem;
  }

  .dashboard .dashboard-grid .dashboard-section {
    padding: 1rem;
  }

  .dashboard .dashboard-grid .dashboard-section h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .dashboard .stats-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .dashboard .stats-grid .stat-card {
    padding: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
  }

  .dashboard .stats-grid .stat-card .stat-icon {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
    margin-bottom: 0;
  }

  .dashboard .stats-grid .stat-card .stat-info h3 {
    font-size: 1.5rem;
  }

  .dashboard .stats-grid .stat-card .stat-info p {
    font-size: 0.85rem;
  }

  .dashboard .dashboard-grid .dashboard-section {
    padding: 0.75rem;
  }

  .dashboard .dashboard-grid .dashboard-section h2 {
    font-size: 1rem;
  }
}

/* Product Management Pages Styles */
.edit-product-page,
.delete-product-page,
.product-images-page,
.product-analytics-page {
  background: #f8f9fa;
  min-height: 100vh;
}

.page-header {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-header .breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.page-header .breadcrumb a {
  color: #06befb;
  text-decoration: none;
}

.page-header .breadcrumb a:hover {
  text-decoration: underline;
}

.page-header .breadcrumb span {
  margin: 0 0.5rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #6c757d;
  font-size: 1rem;
}

/* Edit Product Page */
.edit-product-layout,
.delete-product-layout,
.product-images-layout,
.analytics-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0;
}

.edit-product-main,
.delete-product-main,
.product-images-main,
.analytics-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.edit-product-sidebar,
.delete-product-sidebar,
.product-images-sidebar,
.analytics-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

/* Form Sections */
.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section h2 i {
  color: #06befb;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06befb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #2c3e50;
  font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: auto;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

/* Current Product Info */
.current-product-info {
  text-align: center;
}

.product-preview {
  margin-bottom: 1rem;
}

.product-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.no-image {
  width: 100%;
  height: 150px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.no-image i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.current-product-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.current-product-info .product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #06befb;
  margin-bottom: 0.5rem;
}

.current-product-info .product-category,
.current-product-info .product-location {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-actions .btn {
  justify-content: flex-start;
  text-align: left;
}

/* Product Stats */
.product-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  color: #6c757d;
  font-size: 0.9rem;
}

.stat-value {
  font-weight: 600;
  color: #000000;
}

/* Delete Product Page */
.delete-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.warning-icon {
  color: #856404;
  font-size: 2rem;
}

.delete-warning h2 {
  color: #856404;
  margin-bottom: 0.5rem;
}

.delete-warning p {
  color: #856404;
  margin: 0;
}

.product-to-delete {
  margin-bottom: 2rem;
}

.product-to-delete h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

/* Consolidated Product Card Styles */
.recent-products .product-card,
.products-content .product-card,
.results-content .product-card,
.recent-content .product-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
}

.recent-products .product-card:hover,
.products-content .product-card:hover,
.results-content .product-card:hover,
.recent-content .product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

.recent-products .product-card .product-image,
.products-content .product-card .product-image,
.results-content .product-card .product-image,
.recent-content .product-card .product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.recent-products .product-card .product-image img,
.products-content .product-card .product-image img,
.results-content .product-card .product-image img,
.recent-content .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.recent-products .product-card:hover .product-image img,
.products-content .product-card:hover .product-image img,
.results-content .product-card:hover .product-image img,
.recent-content .product-card:hover .product-image img {
  transform: scale(1.05);
}

.recent-products .product-card .product-info,
.products-content .product-card .product-info,
.results-content .product-card .product-info,
.recent-content .product-card .product-info {
  padding: 20px;
}

.recent-products .product-card .product-info .product-title,
.products-content .product-card .product-info .product-title,
.results-content .product-card .product-info .product-title,
.recent-content .product-card .product-info .product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #1b1b1f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-products .product-card .product-info .product-meta,
.products-content .product-card .product-info .product-meta,
.results-content .product-card .product-info .product-meta,
.recent-content .product-card .product-info .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.recent-products .product-card .product-info .product-meta .product-price,
.products-content .product-card .product-info .product-meta .product-price,
.results-content .product-card .product-info .product-meta .product-price,
.recent-content .product-card .product-info .product-meta .product-price {
  font-size: 20px;
  font-weight: 700;
  color: #06befb;
}

.recent-products .product-card .product-info .product-meta .product-location,
.products-content .product-card .product-info .product-meta .product-location,
.results-content .product-card .product-info .product-meta .product-location,
.recent-content .product-card .product-info .product-meta .product-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6c757d;
  font-size: 14px;
}

.recent-products .product-card .product-info .product-meta .product-location i,
.products-content .product-card .product-info .product-meta .product-location i,
.results-content .product-card .product-info .product-meta .product-location i,
.recent-content .product-card .product-info .product-meta .product-location i {
  font-size: 12px;
}

.recent-products .product-card .product-info .product-stats,
.products-content .product-card .product-info .product-stats,
.results-content .product-card .product-info .product-stats,
.recent-content .product-card .product-info .product-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c757d;
  font-size: 14px;
}

.recent-products .product-card .product-info .product-stats .views,
.products-content .product-card .product-info .product-stats .views,
.results-content .product-card .product-info .product-stats .views,
.recent-content .product-card .product-info .product-stats .views {
  display: flex;
  align-items: center;
  gap: 4px;
}

.recent-products .product-card .product-info .product-stats .views i,
.products-content .product-card .product-info .product-stats .views i,
.results-content .product-card .product-info .product-stats .views i,
.recent-content .product-card .product-info .product-stats .views i {
  font-size: 12px;
}

/* No Image Placeholder */
.recent-products .product-card .product-image .no-image,
.products-content .product-card .product-image .no-image,
.results-content .product-card .product-image .no-image,
.recent-content .product-card .product-image .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 48px;
}

/* Product Badges */
.recent-products .product-card .product-image .product-badges,
.products-content .product-card .product-image .product-badges,
.results-content .product-card .product-image .product-badges,
.recent-content .product-card .product-image .product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recent-products .product-card .product-image .product-badges .badge,
.products-content .product-card .product-image .product-badges .badge,
.results-content .product-card .product-image .product-badges .badge,
.recent-content .product-card .product-image .product-badges .badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.recent-products .product-card .product-image .product-badges .badge.featured-badge,
.products-content .product-card .product-image .product-badges .badge.featured-badge,
.results-content .product-card .product-image .product-badges .badge.featured-badge,
.recent-content .product-card .product-image .product-badges .badge.featured-badge {
  background: #ffc107;
  color: #ffffff;
}

.recent-products .product-card .product-image .product-badges .badge.urgent-badge,
.products-content .product-card .product-image .product-badges .badge.urgent-badge,
.results-content .product-card .product-image .product-badges .badge.urgent-badge,
.recent-content .product-card .product-image .product-badges .badge.urgent-badge {
  background: #dc3545;
  color: #ffffff;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.status-published {
  background: #d4edda;
  color: #155724;
}

.status-draft {
  background: #fff3cd;
  color: #856404;
}

.status-sold {
  background: #cce5ff;
  color: #004085;
}

.status-expired {
  background: #f8d7da;
  color: #721c24;
}

.status-archived {
  background: #e2e3e5;
  color: #383d41;
}

/* Deletion Impact */
.deletion-impact {
  margin-bottom: 2rem;
}

.deletion-impact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.impact-item i {
  color: #dc3545;
  font-size: 1.1rem;
}

/* Delete Options */
.delete-options {
  margin-bottom: 2rem;
}

.delete-options h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: #06befb;
  background: #f8f9fa;
}

.radio-option input[type="radio"] {
  margin: 0;
  width: auto;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.radio-option input[type="radio"]:checked+.radio-custom {
  border-color: #06befb;
}

.radio-option input[type="radio"]:checked+.radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #06befb;
  border-radius: 50%;
}

.radio-content strong {
  display: block;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.radio-content p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Confirmation Section */
.confirmation-section {
  margin-bottom: 2rem;
}

.confirmation-checkbox {
  margin-bottom: 1rem;
}

.confirmation-text {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #06befb;
}

.confirmation-text p {
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.confirmation-text ul {
  margin: 0;
  padding-left: 1.5rem;
}

.confirmation-text li {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Product Images Page */
.upload-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.file-upload-area {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: #06befb;
  background: #f0f9ff;
}

.upload-icon {
  color: #06befb;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.file-upload-area h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.file-upload-area p {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.upload-info {
  font-size: 0.9rem;
  color: #6c757d;
}

.selected-files {
  margin-top: 1.5rem;
}

.selected-files h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.file-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.file-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.file-preview {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.file-details {
  flex: 1;
}

.file-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.25rem;
  word-break: break-word;
}

.file-size {
  font-size: 0.8rem;
  color: #6c757d;
}

.upload-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Existing Images */
.existing-images-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.no-images {
  text-align: center;
  padding: 3rem 2rem;
  color: #6c757d;
}

.no-images-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-images h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.image-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.image-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-item.primary {
  border-color: #06befb;
  box-shadow: 0 0 0 2px rgba(6, 190, 251, 0.2);
}

.image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.image-item:hover .image-container img {
  transform: scale(1.05);
}

.primary-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #06befb;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-item:hover .image-overlay {
  opacity: 1;
}

.image-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-action {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.btn-action.btn-primary {
  background: #06befb;
}

.btn-action.btn-view {
  background: #28a745;
}

.btn-action.btn-danger {
  background: #dc3545;
}

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

.image-info {
  padding: 1rem;
}

.image-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.25rem;
  word-break: break-word;
}

.image-size,
.image-date {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 0.125rem;
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}


.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #06befb;
}

.modal-info {
  text-align: center;
  margin-top: 1rem;
}

.modal-info h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Analytics Page */
.period-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.period-selector h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
}

.period-buttons {
  display: flex;
  gap: 0.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.metric-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.metric-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.metric-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.metric-change {
  font-size: 0.8rem;
  font-weight: 500;
}

.metric-change.positive {
  color: #28a745;
}

.metric-change.negative {
  color: #dc3545;
}

.metric-change.neutral {
  color: #6c757d;
}

.chart-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.chart-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chart-container {
  position: relative;
  height: 400px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
}

.recent-inquiries-section,
.comparison-section {
  margin-bottom: 2rem;
}

.recent-inquiries-section h2,
.comparison-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.no-data {
  text-align: center;
  padding: 3rem 2rem;
  color: #6c757d;
}

.no-data-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-data h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.inquiries-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inquiry-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
}

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

.inquiry-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.user-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.user-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.inquiry-date {
  color: #6c757d;
  font-size: 0.9rem;
}

.inquiry-message {
  margin-bottom: 1rem;
}

.inquiry-message p {
  color: #2c3e50;
  line-height: 1.5;
  margin: 0;
}

.inquiry-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #06befb;
  font-size: 0.9rem;
}

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

.comparison-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
}

.comparison-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.comparison-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-stats .stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-stats .stat:last-child {
  border-bottom: none;
}

.comparison-stats .stat-label {
  color: #6c757d;
  font-size: 0.9rem;
}

.comparison-stats .stat-value {
  font-weight: 600;
  color: #000000;
}

/* Top Products */
.top-products,
.user-products {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.top-product-item,
.user-product-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.product-rank {
  width: 30px;
  height: 30px;
  background: #06befb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.product-details h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
  word-break: break-word;
}

.product-details p {
  color: #6c757d;
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive Design for Product Management Pages */
@media (max-width: 1024px) {

  .edit-product-layout,
  .delete-product-layout,
  .product-images-layout,
  .analytics-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .edit-product-sidebar,
  .delete-product-sidebar,
  .product-images-sidebar,
  .analytics-sidebar {
    order: -1;
  }

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

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

@media (max-width: 768px) {
  .page-header {
    padding: 1.5rem 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .edit-product-main,
  .delete-product-main,
  .product-images-main,
  .analytics-main {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    flex-direction: column;
  }

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

  .radio-option {
    flex-direction: column;
    align-items: flex-start;
  }

  .radio-custom {
    margin-top: 0;
  }

  .period-selector {
    flex-direction: column;
    align-items: flex-start;
  }

  .period-buttons {
    width: 100%;
    justify-content: space-between;
  }

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

  .metric-card {
    flex-direction: column;
    text-align: center;
  }

  .metric-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .metric-info h3 {
    font-size: 1.5rem;
  }

  .chart-container {
    height: 300px;
  }

  .inquiry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .images-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .file-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .edit-product-main,
  .delete-product-main,
  .product-images-main,
  .analytics-main {
    padding: 1rem;
  }

  .sidebar-section {
    padding: 1rem;
  }

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

  .metric-card {
    padding: 1rem;
  }

  .metric-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .metric-info h3 {
    font-size: 1.25rem;
  }

  .chart-container {
    height: 250px;
    padding: 0.5rem;
  }

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

  .image-container {
    height: 150px;
  }

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

/* User Management Pages Styles */
.user-settings-page,
.user-verification-page,
.user-reviews-page,
.user-favorites-page,
.user-alerts-page {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Settings Page */
.settings-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.settings-sidebar {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.settings-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #6c757d;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav-item:hover {
  background: #f8f9fa;
  color: #06befc;
}

.nav-item.active {
  background: #06befc;
  color: #ffffff;
  border-color: #06befc;
}

.nav-item i {
  width: 20px;
  text-align: center;
}

.settings-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.settings-section {
  display: none;
}

.settings-section.active {
  display: block;
}

.section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-header p {
  color: #6c757d;
  margin: 0;
}

.settings-form {
  max-width: 600px;
}

/* Notification Settings */
.notification-group {
  margin-bottom: 2rem;
}

.notification-group h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Privacy Settings */
.privacy-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.privacy-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.privacy-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

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

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #06befb;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

/* Account Actions */
.account-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.account-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.account-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.account-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Password Strength */
.password-strength {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.strength-very-weak {
  color: #dc3545;
}

.strength-weak {
  color: #fd7e14;
}

.strength-medium {
  color: #ffc107;
}

.strength-strong {
  color: #28a745;
}

.strength-very-strong {
  color: #20c997;
}

/* Verification Page */
.verification-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0;
}

.verification-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.verification-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verification-status {
  margin-bottom: 2rem;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.status-icon {
  font-size: 3rem;
}

.status-icon .verified {
  color: #28a745;
}

.status-icon .pending {
  color: #ffc107;
}

.status-icon .rejected {
  color: #dc3545;
}

.status-icon .not-verified {
  color: #6c757d;
}

.status-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.status-info p {
  color: #6c757d;
  margin: 0;
}

/* Verification Benefits */
.verification-benefits {
  margin-bottom: 2rem;
}

.verification-benefits h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.benefit-icon {
  font-size: 2rem;
  color: #06befb;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Document Upload */
.document-upload-section {
  margin-bottom: 2rem;
}

.document-upload-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.document-requirements {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #06befb;
}

.document-requirements h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.document-requirements ul {
  margin: 0;
  padding-left: 1.5rem;
}

.document-requirements li {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.document-uploads {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.upload-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.upload-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upload-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.uploaded-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #28a745;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.upload-form {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.upload-form input[type="file"] {
  margin: 0;
}

/* Verification Timeline */
.verification-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
}

.timeline-item.completed {
  background: #d4edda;
  border-color: #28a745;
}

.timeline-item.current {
  background: #fff3cd;
  border-color: #ffc107;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: #06befb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
  background: #28a745;
}

.timeline-item.current .timeline-icon {
  background: #ffc107;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Reviews Page */
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0;
}

.reviews-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviews-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-stats {
  margin-bottom: 2rem;
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.stat-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.stat-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars .fas.fa-star {
  color: #ffc107;
}

.rating-stars .fas.fa-star.active {
  color: #ffc107;
}

.rating-breakdown h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-label {
  width: 80px;
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bar-container {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #06befb;
  transition: width 0.3s ease;
}

.rating-count {
  width: 30px;
  text-align: right;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Reviews Controls */
.reviews-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.filters,
.sorting {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filters label,
.sorting label {
  font-weight: 600;
  color: #000000;
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.review-rating .fas.fa-star {
  color: #ffc107;
}

.review-rating .fas.fa-star.active {
  color: #ffc107;
}

.review-date {
  color: #6c757d;
  font-size: 0.9rem;
}

.review-actions {
  display: flex;
  gap: 0.5rem;
}

.review-content p {
  color: #2c3e50;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.review-product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.review-product i {
  color: #06befb;
}

.review-product a {
  color: #06befb;
  text-decoration: none;
  font-weight: 500;
}

.review-product a:hover {
  text-decoration: underline;
}

.review-reply {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #06befb;
  margin-top: 1rem;
}

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

.reply-header h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reply-date {
  color: #6c757d;
  font-size: 0.9rem;
}

.review-reply p {
  color: #2c3e50;
  margin: 0;
}

/* Favorites Page */
.favorites-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0;
}

.favorites-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.favorites-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.favorites-stats {
  margin-bottom: 2rem;
}

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

.stat-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-icon {
  width: 50px;
  height: 50px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.stat-card .stat-icon.active {
  background: #28a745;
}

.stat-card .stat-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.stat-card .stat-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Favorites Controls */
.favorites-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.filters-section {
  display: flex;
  gap: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: #000000;
}

/* Favorites Grid */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.favorite-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.favorite-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.favorite-item .product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.favorite-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.favorite-item:hover .product-image img {
  transform: scale(1.05);
}

.product-actions {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.favorite-item:hover .product-actions {
  opacity: 1;
}

.favorite-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #dc3545;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.favorite-item .product-info {
  padding: 1.5rem;
}

.favorite-item .product-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.favorite-item .product-info h4 a {
  color: #000000;
  text-decoration: none;
}

.favorite-item .product-info h4 a:hover {
  color: #06befb;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.product-price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #06befb;
}

.product-price .currency {
  font-size: 1rem;
  color: #6c757d;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.meta-item i {
  width: 16px;
  text-align: center;
}

.product-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.product-stats .stat {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6c757d;
  font-size: 0.8rem;
}

.favorite-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e0e0e0;
}

.favorite-date i {
  color: #dc3545;
}

/* Category List */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-link {
  display: block;
  padding: 0.75rem;
  color: #6c757d;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.category-link:hover {
  background: #f8f9fa;
  color: #06befb;
}

.category-link.active {
  background: #06befb;
  color: #ffffff;
}

/* Alerts Page */
.alerts-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0;
}

.alerts-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alerts-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.alerts-stats {
  margin-bottom: 2rem;
}

/* Create Alert Section */
.create-alert-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.create-alert-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-form {
  max-width: 600px;
}

/* Alerts Controls */
.alerts-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.filters-section {
  display: flex;
  gap: 1rem;
}

/* Alerts List */
.alerts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.alert-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.alert-item.active {
  border-left: 4px solid #28a745;
}

.alert-item.inactive {
  border-left: 4px solid #6c757d;
  opacity: 0.7;
}

.alert-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.alert-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-icon {
  width: 50px;
  height: 50px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.alert-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.alert-description {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.alert-date {
  color: #6c757d;
  font-size: 0.8rem;
}

.alert-actions {
  display: flex;
  gap: 0.5rem;
}

.alert-product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 1rem;
}

.alert-product i {
  color: #06befb;
}

.alert-product a {
  color: #06befb;
  text-decoration: none;
  font-weight: 500;
}

.alert-product a:hover {
  text-decoration: underline;
}

.product-price {
  margin-left: auto;
  font-weight: 600;
  color: #06befb;
}

/* Alert Types */
.alert-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alert-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.alert-type i {
  font-size: 1.5rem;
  color: #06befb;
}

.alert-type h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.alert-type p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Clear Warning */
.clear-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.clear-warning i {
  color: #856404;
  font-size: 2rem;
}

.clear-warning h4 {
  color: #856404;
  margin-bottom: 0.5rem;
}

.clear-warning p {
  color: #856404;
  margin: 0;
}

/* Responsive Design for User Management Pages */
@media (max-width: 1024px) {

  .settings-layout,
  .verification-layout,
  .reviews-layout,
  .favorites-layout,
  .alerts-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .settings-sidebar,
  .verification-sidebar,
  .reviews-sidebar,
  .favorites-sidebar,
  .alerts-sidebar {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {

  .settings-main,
  .verification-main,
  .reviews-main,
  .favorites-main,
  .alerts-main {
    padding: 1.5rem;
  }

  .settings-sidebar,
  .verification-sidebar,
  .reviews-sidebar,
  .favorites-sidebar,
  .alerts-sidebar {
    padding: 1rem;
  }

  .settings-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.25rem;
  }

  .nav-item {
    white-space: nowrap;
    padding: 0.75rem;
  }

  .nav-item span {
    display: none;
  }

  .stats-overview {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-info h3 {
    font-size: 1.25rem;
  }

  .reviews-controls,
  .favorites-controls,
  .alerts-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .filters-section {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .alert-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .alert-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .upload-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .upload-form {
    width: 100%;
    justify-content: space-between;
  }

  .privacy-item,
  .account-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {

  .settings-main,
  .verification-main,
  .reviews-main,
  .favorites-main,
  .alerts-main {
    padding: 1rem;
  }

  .settings-sidebar,
  .verification-sidebar,
  .reviews-sidebar,
  .favorites-sidebar,
  .alerts-sidebar {
    padding: 0.75rem;
  }

  .stats-overview {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-card .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-card .stat-info h3 {
    font-size: 1.25rem;
  }

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

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

  .favorite-item .product-image {
    height: 150px;
  }

  .product-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Additional Pages Styles */
.report-product-page,
.advanced-search-page,
.trending-page,
.featured-page {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Report Product Page */
.report-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  padding: 2rem 0;
}

.report-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.report-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info-section {
  margin-bottom: 2rem;
}

.product-info-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Removed duplicate product-card styles - using consolidated styles above */

.product-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}


.product-details .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.product-details .meta-item i {
  width: 16px;
  text-align: center;
}

.product-details .product-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.product-details .product-price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #06befb;
}

.product-details .product-price .currency {
  font-size: 1rem;
  color: #6c757d;
}

.report-form-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.report-form {
  max-width: 600px;
}

/* Report Types */
.report-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.report-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.type-icon {
  width: 40px;
  height: 40px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.type-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.type-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.step-number {
  width: 30px;
  height: 30px;
  background: #06befb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Contact Info */
.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.contact-info p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.contact-item i {
  width: 20px;
  text-align: center;
  color: #06befb;
}

/* Advanced Search Page */
.search-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.search-filters {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.filters-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filters-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: #000000;
  font-size: 0.9rem;
}

.filter-actions {
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.search-results {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.results-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.results-info p {
  color: #6c757d;
  margin: 0;
}

.results-actions {
  display: flex;
  gap: 1rem;
}

.view-toggle {
  display: flex;
  gap: 0.25rem;
}

.view-toggle button {
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-toggle button:hover {
  background: #f8f9fa;
}

.view-toggle button.active {
  background: #06befb;
  color: #ffffff;
  border-color: #06befb;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.results-grid.list-view {
  grid-template-columns: 1fr;
}

.results-grid.list-view .product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.results-grid.list-view .product-image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

/* Trending Page */
.trending-layout {
  padding: 2rem 0;
}

.trending-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-tab:hover {
  background: #f8f9fa;
}

.filter-tab.active {
  background: #06befb;
  color: #ffffff;
  border-color: #06befb;
}

.period-filters {
  display: flex;
  gap: 0.5rem;
}

.period-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.period-btn:hover {
  background: #f8f9fa;
}

.period-btn.active {
  background: #06befb;
  color: #ffffff;
  border-color: #06befb;
}

.trending-results {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.results-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.results-header p {
  color: #6c757d;
  margin: 0;
}

.trending-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.trending-card {
  position: relative;
}

.trending-rank {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #06befb;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.trending-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #ffc107;
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.trending-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.trend-stat {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6c757d;
  font-size: 0.8rem;
}

.trending-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.category-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.category-card.selected {
  border: 2px solid #06befc;
  background: rgba(6, 190, 252, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 190, 252, 0.3);
}

.category-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
}

.category-card.disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.disabled-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 12px;
}

.disabled-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.disabled-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Photo Upload Styles */
.photo-upload-container {
  margin-bottom: 1rem;
}

.photo-upload-area {
  border: 2px dashed #06befc;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(6, 190, 252, 0.05);
}

.photo-upload-area:hover {
  border-color: #05a3d9;
  background: rgba(6, 190, 252, 0.1);
}

.photo-upload-area i {
  font-size: 3rem;
  color: #06befc;
  margin-bottom: 1rem;
  display: block;
}

.photo-upload-area p {
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.photo-upload-area small {
  color: #666;
  font-size: 0.9rem;
}

.photo-preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.photo-preview {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.photo-preview .photo-actions {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.photo-preview .photo-actions button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.photo-preview .photo-actions button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.photo-preview .primary-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #06befc;
  color: white;
  text-align: center;
  padding: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Category-specific fields */
.category-specific-fields {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #06befc;
}

.category-specific-fields h3 {
  margin: 0 0 1.5rem 0;
  color: #06befc;
  font-size: 1.2rem;
  font-weight: 600;
}

.category-specific-fields .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.category-specific-fields .form-group {
  margin-bottom: 1rem;
}

.category-specific-fields .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.category-specific-fields .form-group input,
.category-specific-fields .form-group select,
.category-specific-fields .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.category-specific-fields .form-group input:focus,
.category-specific-fields .form-group select:focus,
.category-specific-fields .form-group textarea:focus {
  outline: none;
  border-color: #06befc;
  box-shadow: 0 0 0 3px rgba(6, 190, 252, 0.1);
}

.category-specific-fields .checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-specific-fields .checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.category-specific-fields .checkbox-group label {
  margin: 0;
  font-weight: normal;
}

.category-icon {
  width: 60px;
  height: 60px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.category-info h3 a {
  color: #000000;
  text-decoration: none;
}

.category-info h3 a:hover {
  color: #06befb;
}

.category-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.category-stats .stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.category-stats .stat i {
  width: 16px;
  text-align: center;
}

.category-actions {
  margin-top: 1rem;
}

/* Featured Page */
.featured-layout {
  padding: 2rem 0;
}

.recently-featured {
  margin-bottom: 2rem;
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recently-featured h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.recent-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.recent-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recent-image {
  position: relative;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.recent-image .no-image {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.5rem;
}

.featured-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #ffc107;
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.recent-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.recent-info h4 a {
  color: #000000;
  text-decoration: none;
}

.recent-info h4 a:hover {
  color: #06befb;
}

.recent-category {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.recent-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #06befb;
}

.featured-filters {
  margin-bottom: 2rem;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filters-section {
  display: flex;
  gap: 2rem;
  align-items: end;
}

.featured-products {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.products-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.products-header p {
  color: #6c757d;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.featured-card {
  position: relative;
}

.featured-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 1rem;
}

.featured-date i {
  color: #ffc107;
}

/* Character Counter */
.char-counter {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: right;
  margin-top: 0.25rem;
}

/* Responsive Design for Additional Pages */
@media (max-width: 1024px) {

  .report-layout,
  .search-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .search-filters,
  .report-sidebar {
    order: -1;
  }

  .filters-section {
    flex-direction: column;
    gap: 1rem;
  }

  .trending-filters {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .filter-tabs,
  .period-filters {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .report-main,
  .search-results,
  .trending-results,
  .featured-products,
  .recently-featured {
    padding: 1.5rem;
  }

  .search-filters,
  .report-sidebar {
    padding: 1rem;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
  }

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

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

  .trending-products .products-grid,
  .trending-categories .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .recent-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .results-header {
    flex-direction: column;
    gap: 1rem;
  }

  .results-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .report-main,
  .search-results,
  .trending-results,
  .featured-products,
  .recently-featured {
    padding: 1rem;
  }

  .search-filters,
  .report-sidebar {
    padding: 0.75rem;
  }

  .filter-tabs {
    flex-direction: column;
  }

  .period-filters {
    flex-direction: column;
  }

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

  .trending-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .category-stats {
    flex-direction: column;
  }
}

/* Category Management Pages Styles */
.category-filters-page,
.subcategory-page,
.category-stats-page,
.pricing-page {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Category Filters Page */
.filters-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.filters-sidebar {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.filters-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filters-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-section {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
}

.filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  font-weight: 600;
  color: #000000;
  font-size: 0.9rem;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-info {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.price-info p {
  margin: 0.25rem 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.filters-results {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Subcategory Page */
.subcategory-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem 0;
}

.subcategory-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.subcategory-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.category-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.category-details p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.sidebar-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  color: #6c757d;
  font-size: 0.9rem;
}

.stat-value {
  font-weight: 600;
  color: #000000;
}

.related-subcategories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease;
}

.related-item:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.related-icon {
  width: 40px;
  height: 40px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}

.related-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.related-info p {
  color: #6c757d;
  font-size: 0.8rem;
  margin: 0;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.subcategory-filters {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.filters-section {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

/* Category Stats Page */
.stats-filters {
  margin-bottom: 2rem;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filters-form {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

.custom-dates {
  display: flex;
  gap: 1rem;
  align-items: end;
}

.charts-section {
  margin-bottom: 2rem;
}

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

.chart-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chart-container h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
}

.category-stats-section {
  margin-bottom: 2rem;
}

.category-stats-table {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

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

.category-stats-table th,
.category-stats-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.category-stats-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #000000;
}

.category-stats-table tr:hover {
  background: #f8f9fa;
}

.top-products-section {
  margin-bottom: 2rem;
}

.top-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.top-product-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.top-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.product-rank {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #06befb;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.top-product-card .product-image {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.top-product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-product-card .product-image .no-image {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 2rem;
}

.top-product-card .product-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.top-product-card .product-info h4 a {
  color: #000000;
  text-decoration: none;
}

.top-product-card .product-info h4 a:hover {
  color: #06befb;
}

.product-category {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.top-sellers-section {
  margin-bottom: 2rem;
}

.top-sellers-table {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

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

.top-sellers-table th,
.top-sellers-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.top-sellers-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #000000;
}

.top-sellers-table tr:hover {
  background: #f8f9fa;
}

.seller-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

/* Pricing Page */
.pricing-filters {
  margin-bottom: 2rem;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-stats {
  margin-bottom: 2rem;
}

.category-pricing-section {
  margin-bottom: 2rem;
}

.category-pricing-table {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

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

.category-pricing-table th,
.category-pricing-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.category-pricing-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #000000;
}

.category-pricing-table tr:hover {
  background: #f8f9fa;
}

.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.badge-success {
  background: #d4edda;
  color: #155724;
}

.badge-primary {
  background: #cce7ff;
  color: #004085;
}

.badge-secondary {
  background: #e2e3e5;
  color: #383d41;
}

.pricing-plans-section {
  margin-bottom: 2rem;
}

.pricing-plans-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #06befb;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pricing-plan-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: #06befb;
}

.plan-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.plan-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.plan-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: #06befb;
}

.plan-price .price.free {
  color: #28a745;
}

.plan-price .currency {
  font-size: 1.2rem;
  color: #6c757d;
}

.plan-description {
  margin-bottom: 1rem;
}

.plan-description p {
  color: #6c757d;
  text-align: center;
  margin: 0;
}

.plan-features {
  margin-bottom: 1.5rem;
}

.plan-features h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.plan-features li i {
  color: #28a745;
  font-size: 0.8rem;
}

.plan-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.plan-status {
  display: flex;
  align-items: center;
}

.plan-actions {
  display: flex;
  gap: 0.5rem;
}

.no-plans {
  text-align: center;
  padding: 3rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-plans-icon {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.no-plans h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.no-plans p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.popular-packages-section {
  margin-bottom: 2rem;
}

.popular-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.popular-package-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.popular-package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.package-rank {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #ffc107;
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.package-category {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.package-price {
  margin-bottom: 0.75rem;
}

.package-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #06befb;
}

.package-price .price.free {
  color: #28a745;
}

.package-price .currency {
  font-size: 1rem;
  color: #6c757d;
}

.package-usage {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.package-usage i {
  color: #06befb;
}

.package-description {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.pricing-trends-section {
  margin-bottom: 2rem;
}

.trends-table {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

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

.trends-table th,
.trends-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.trends-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #000000;
}

.trends-table tr:hover {
  background: #f8f9fa;
}

/* Responsive Design for Category Management Pages */
@media (max-width: 1024px) {

  .filters-layout,
  .subcategory-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filters-sidebar,
  .subcategory-sidebar {
    order: -1;
  }

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

  .filters-form {
    flex-direction: column;
    gap: 1rem;
  }

  .custom-dates {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {

  .subcategory-main,
  .filters-results,
  .chart-container,
  .category-stats-table,
  .top-sellers-table,
  .category-pricing-table,
  .trends-table {
    padding: 1rem;
  }

  .filters-sidebar,
  .subcategory-sidebar {
    padding: 1rem;
  }

  .plans-grid,
  .popular-packages-grid,
  .top-products-grid {
    grid-template-columns: 1fr;
  }

  .filters-section {
    flex-direction: column;
    gap: 1rem;
  }

  .plan-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

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

@media (max-width: 480px) {

  .subcategory-main,
  .filters-results,
  .chart-container,
  .category-stats-table,
  .top-sellers-table,
  .category-pricing-table,
  .trends-table {
    padding: 0.75rem;
  }

  .filters-sidebar,
  .subcategory-sidebar {
    padding: 0.75rem;
  }

  .category-info {
    flex-direction: column;
    text-align: center;
  }

  .related-item {
    flex-direction: column;
    text-align: center;
  }

  .quick-actions {
    gap: 0.5rem;
  }

  .plan-header h4 {
    font-size: 1.1rem;
  }

  .plan-price .price {
    font-size: 1.5rem;
  }
}

/* Admin and System Pages Styles */
.invoice-page,
.upgrade-plan-page,
.admin-dashboard-page,
.admin-users-page,
.admin-products-page,
.admin-categories-page,
.admin-reports-page,
.admin-settings-page,
.admin-email-templates-page,
.admin-notifications-page,
.admin-ads-page {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Invoice Page */
.invoice-list {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.list-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.invoices-table {
  overflow-x: auto;
}

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

.invoices-table th,
.invoices-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.invoices-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #000000;
}

.invoices-table tr:hover {
  background: #f8f9fa;
}

.package-info strong {
  display: block;
  margin-bottom: 0.25rem;
}

.package-info small {
  color: #6c757d;
}

.amount {
  font-weight: 600;
  color: #06befb;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-paid {
  background: #d4edda;
  color: #155724;
}

.status-failed {
  background: #f8d7da;
  color: #721c24;
}

.status-cancelled {
  background: #e2e3e5;
  color: #383d41;
}

.date-info {
  text-align: center;
}

.date-info small {
  color: #6c757d;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.no-invoices {
  text-align: center;
  padding: 3rem;
}

.no-invoices-icon {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.no-invoices h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.no-invoices p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Invoice Details */
.invoice-details {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.invoice-info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.invoice-info p {
  color: #6c757d;
  margin: 0;
}

.invoice-actions {
  display: flex;
  gap: 1rem;
}

.invoice-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

.invoice-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.company-info,
.customer-info {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.company-info h3,
.customer-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.company-details p,
.customer-details p {
  margin: 0.5rem 0;
  color: #6c757d;
}

.invoice-items {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.invoice-items h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

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

.items-table th,
.items-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.items-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #000000;
}

.total-row {
  background: #f8f9fa;
  font-weight: 600;
}

.payment-info {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.payment-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.payment-item:last-child {
  border-bottom: none;
}

.invoice-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.invoice-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.invoice-summary h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 600;
  font-size: 1.1rem;
  color: #000000;
}

.quick-actions {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.quick-actions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.actions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease;
}

.action-item:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.action-item i {
  color: #06befb;
  width: 20px;
  text-align: center;
}

.support-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.support-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.support-info p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.support-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.support-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #06befb;
  text-decoration: none;
  font-size: 0.9rem;
}

.support-contact:hover {
  text-decoration: underline;
}

/* Upgrade Plan Page */
.current-plan-section {
  margin-bottom: 2rem;
}

.current-plan-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.current-plan-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #06befb;
}

.plan-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.plan-info p {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #06befb;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.available-plans-section {
  margin-bottom: 2rem;
}

.available-plans-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-section {
  margin-bottom: 2rem;
}

.benefits-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.benefit-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #6c757d;
  margin: 0;
}

.faq-section {
  margin-bottom: 2rem;
}

.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.faq-question i {
  color: #06befb;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #6c757d;
  margin: 0;
}

.support-section {
  text-align: center;
  padding: 3rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.support-section p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.support-contacts {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Admin Dashboard Page */
.stats-section {
  margin-bottom: 2rem;
}

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

.stat-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.stat-info p {
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.stat-info small {
  color: #28a745;
  font-weight: 500;
}

.charts-section {
  margin-bottom: 2rem;
}

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

.chart-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chart-container h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
}

.quick-actions-section {
  margin-bottom: 2rem;
}

.quick-actions-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.action-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease;
  text-align: center;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: #000000;
}

.action-card .action-icon {
  width: 60px;
  height: 60px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.action-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.action-card p {
  color: #6c757d;
  margin: 0;
}

.recent-activity-section {
  margin-bottom: 2rem;
}

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

.activity-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.activity-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.user-avatar,
.product-image,
.report-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-avatar {
  background: #06befb;
  color: #ffffff;
}


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

.report-icon {
  background: #ffc107;
  color: #000000;
}

.activity-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.activity-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.activity-info small {
  color: #6c757d;
  font-size: 0.8rem;
}

.activity-meta {
  margin-left: auto;
}

.activity-footer {
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.system-status-section {
  margin-bottom: 2rem;
}

.system-status-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.status-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-online {
  background: #28a745;
}

.status-offline {
  background: #dc3545;
}

.status-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.status-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Admin Users and Products Pages */
.filters-section {
  margin-bottom: 2rem;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filters-form {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}

.filter-group label {
  font-weight: 600;
  color: #000000;
  font-size: 0.9rem;
}

.filter-actions {
  display: flex;
  gap: 0.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-actions {
  display: flex;
  gap: 0.5rem;
}

.users-section,
.products-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.users-table,
.products-table {
  overflow-x: auto;
}

.users-table table,
.products-table table {
  width: 100%;
  border-collapse: collapse;
}

.users-table th,
.users-table td,
.products-table th,
.products-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.users-table th,
.products-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #000000;
}

.users-table tr:hover,
.products-table tr:hover {
  background: #f8f9fa;
}

.user-info,
.product-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #06befb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.user-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.user-details p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.contact-info p {
  margin: 0.25rem 0;
  color: #6c757d;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  width: 16px;
  text-align: center;
  color: #06befb;
}

.products-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-weight: 600;
  color: #000000;
}

.stat-label {
  color: #6c757d;
  font-size: 0.8rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #28a745;
  font-size: 0.9rem;
  font-weight: 500;
}

.unverified-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
}


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

.product-image i {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.5rem;
}

.product-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.product-details p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6c757d;
  font-size: 0.8rem;
}

.product-stats i {
  color: #06befb;
}

.featured-badge {
  background: #ffc107;
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.category-badge {
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #000000;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
}

.dropdown-item.danger {
  color: #dc3545;
}

.dropdown-item.danger:hover {
  background: #f8d7da;
}

.dropdown-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 0.5rem 0;
}

.inline-form {
  display: contents;
}

.no-users,
.no-products {
  text-align: center;
  padding: 3rem;
}

.no-users-icon,
.no-products-icon {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.no-users h3,
.no-products h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.no-users p,
.no-products p {
  color: #6c757d;
  margin: 0;
}

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-success i {
  color: #28a745;
}

/* Enhanced Navbar Responsive Design */
@media (max-width: 1200px) {
  .navbar .container {
    padding: 0 1rem;
  }

  .nav-center .search-form {
    max-width: 400px;
  }

  .search-input-group {
    gap: 0.5rem;
  }

  .search-text {
    display: none;
  }

  .search-btn {
    padding: 0.75rem;
    min-width: auto;
  }

  .nav-text {
    display: none;
  }

  .nav-item {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 1100px) {
  .nav-center .search-form {
    max-width: 350px;
  }

  .search-input-group {
    gap: 0.25rem;
  }

  .search-input {
    font-size: 0.9rem;
  }

  .category-select {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .navbar .container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-center {
    order: 3;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-center .search-form {
    max-width: 100%;
  }

  .search-input-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .search-input,
  .category-select {
    width: 100%;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .search-text {
    display: inline;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .nav-item {
    padding: 0.5rem;
  }

  .nav-item.primary {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .container {
    padding: 0 0.75rem;
    gap: 0.75rem;
  }

  .nav-left .logo {
    gap: 0.5rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .nav-center {
    margin-top: 0.75rem;
  }

  .search-input-group {
    gap: 0.5rem;
  }

  .search-input,
  .category-select,
  .search-btn {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .nav-right {
    gap: 0.25rem;
  }

  .nav-item {
    padding: 0.5rem 0.25rem;
    font-size: 0.9rem;
  }

  .nav-item.primary {
    padding: 0.5rem 0.75rem;
  }

  .nav-item i {
    font-size: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    background: #f8f9fa;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar .container {
    padding: 0 0.5rem;
    gap: 0.5rem;
  }

  .nav-left .logo {
    gap: 0.25rem;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .nav-center {
    margin-top: 0.5rem;
  }

  .search-input,
  .category-select,
  .search-btn {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .nav-right {
    gap: 0.125rem;
  }

  .nav-item {
    padding: 0.375rem 0.125rem;
    font-size: 0.85rem;
  }

  .nav-item.primary {
    padding: 0.375rem 0.5rem;
  }

  .nav-item i {
    font-size: 0.9rem;
  }

  .mobile-menu-toggle {
    padding: 0.375rem;
    font-size: 1.1rem;
  }

  .mobile-menu {
    width: 100%;
  }

  .mobile-menu-header {
    padding: 0.75rem;
  }

  .mobile-menu-item {
    padding: 0.75rem 1rem;
  }
}

/* Additional responsive improvements */
@media (max-width: 360px) {
  .navbar .container {
    padding: 0 0.25rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .nav-item {
    padding: 0.25rem 0.125rem;
    font-size: 0.8rem;
  }

  .nav-item.primary {
    padding: 0.25rem 0.375rem;
  }

  .search-input,
  .category-select,
  .search-btn {
    padding: 0.375rem;
    font-size: 0.8rem;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #000000;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #f8f9fa;
}

/* Make only the mobile menu toggle icon blue */
.mobile-menu-toggle i {
  color: #06befc !important;
}

/* Make the notifications bell icon blue */
.nav-action i.fa-bell {
  color: #06befc !important;
}

/* Make the user profile icon blue */
.user-profile i.fa-user-circle {
  color: #06befc !important;
}

/* Make the login user icon blue */
.nav-action i.fa-user-circle {
  color: #06befc !important;
}

/* Edit product button styling */
.product-actions .btn-secondary {
  background: #06befc !important;
  color: white !important;
  border: 2px solid #06befc !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 80px !important;
  height: 36px !important;
  line-height: 1 !important;
  text-align: center !important;
  font-weight: 600 !important;
}

.product-actions .btn-secondary:hover {
  background: #05a8d8 !important;
  border-color: #05a8d8 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(6, 190, 252, 0.3);
}

/* Ensure product actions are visible - Profile page specific */
.profile-content .product-actions {
  display: flex !important;
  gap: 0.5rem !important;
  margin-top: 0rem !important;
  visibility: visible !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  opacity: 1 !important;
}

.profile-content .product-actions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.5rem 1rem !important;
  text-decoration: none !important;
  border-radius: 0.375rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  min-width: 80px !important;
}

/* Override any conflicting styles for profile product cards */
.product-card .product-actions {
  display: flex !important;
  gap: 0.5rem !important;
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Center icons inside nav-action links */
.nav-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.nav-action i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Phone number styling in product meta */
.product-meta-item i.fa-phone {
  color: #06befc;
}

.product-meta-item:has(i.fa-phone) {
  background: rgba(6, 190, 252, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(6, 190, 252, 0.2);
  font-weight: 600;
}

/* Contact options styling */
.contact-options {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.contact-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 100px;
  justify-content: center;
}

.contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-option.phone {
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  color: white;
  border-color: #06befc;
}

.contact-option.phone:hover {
  background: linear-gradient(135deg, #05a8d8 0%, #0284c7 100%);
  box-shadow: 0 4px 12px rgba(6, 190, 252, 0.4);
}

.contact-option.viber {
  background: linear-gradient(135deg, #665cac 0%, #5a4f9a 100%);
  color: white;
  border-color: #665cac;
}

.contact-option.viber:hover {
  background: linear-gradient(135deg, #5a4f9a 0%, #4e4488 100%);
  box-shadow: 0 4px 12px rgba(102, 92, 172, 0.4);
}

.contact-option.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  border-color: #25d366;
}

.contact-option.whatsapp:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #1ba14e 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.contact-option i {
  font-size: 1.1rem;
}

/* Responsive contact options */
@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-option {
    width: 100%;
    min-width: auto;
  }
}

/* ===== PRODUCT ACTIONS - PROFESSIONAL DESIGN ===== */
.product-actions {
  display: flex;
  gap: 0rem;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
}

.product-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 90px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.product-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.product-actions .btn:hover::before {
  left: 100%;
}

/* View Button (Outline Style) */
.product-actions .btn-outline {
  background: #ffffff;
  color: #64748b;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-actions .btn-outline:hover {
  background: #f1f5f9;
  color: #475569;
  border-color: #94a3b8;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Edit Button (Primary Style) */
.product-actions .btn-secondary {
  background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
  color: #ffffff;
  border: 1px solid #06befc;
  box-shadow: 0 1px 4px rgba(6, 190, 252, 0.3);
}

.product-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #05a8d8 0%, #0284c7 100%);
  border-color: #05a8d8;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(6, 190, 252, 0.4);
}

/* Repost Button (Warning Style) */
.product-actions .btn-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border: 1px solid #f59e0b;
  box-shadow: 0 1px 4px rgba(245, 158, 11, 0.3);
}

.product-actions .btn-warning:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  border-color: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.4);
}

/* Button Icons */
.product-actions .btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.product-actions .btn:hover i {
  transform: scale(1.05);
}

/* Focus States */
.product-actions .btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(6, 190, 252, 0.2);
}

/* Active States */
.product-actions .btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-actions {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .product-actions .btn {
    width: 100%;
    min-width: auto;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .product-actions {
    padding: 0.5rem;
    margin-top: 0.75rem;
  }

  .product-actions .btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.75rem;
  }
}

/* ===== REPOST MODAL STYLES ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

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

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
  margin: 0;
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-header h3 i {
  color: #f59e0b;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f1f5f9;
  color: #475569;
}

.modal-body {
  padding: 1.5rem;
}

.modal-body p {
  margin: 0 0 1rem 0;
  color: #475569;
  line-height: 1.6;
}

.modal-warning {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 0.5rem;
  padding: 1rem;
  color: #92400e;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.modal-warning i {
  color: #f59e0b;
  margin-top: 0.125rem;
}

.modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
  justify-content: flex-end;
}

.modal-footer .btn {
  min-width: 120px;
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  border-left: 4px solid #10b981;
}

.notification-success i {
  color: #10b981;
}

.notification-error {
  border-left: 4px solid #ef4444;
}

.notification-error i {
  color: #ef4444;
}

.notification-warning {
  border-left: 4px solid #f59e0b;
}

.notification-warning i {
  color: #f59e0b;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu {
  background: #ffffff;
  width: 280px;
  height: 100%;
  margin-left: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  background: #06befb;
  color: #ffffff;
}

.mobile-menu-header img {
  width: 32px;
  height: 32px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item:hover {
  background: #f8f9fa;
  color: #000000;
}

.mobile-menu-item i {
  width: 20px;
  text-align: center;
  color: #06befb;
}

/* Dropdown Menu Responsive */
@media (max-width: 768px) {
  .nav-item.dropdown .dropdown-menu {
    position: static;
    display: none;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }

  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .dropdown-menu a:hover {
    background: #f8f9fa;
  }
}

/* Responsive Design for Admin Pages */
@media (max-width: 1024px) {
  .invoice-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .filters-form {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-group {
    min-width: auto;
  }
}

@media (max-width: 768px) {

  .invoice-list,
  .invoice-details,
  .users-section,
  .products-section,
  .filters-section {
    padding: 1rem;
  }

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

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

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

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

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

  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .invoice-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

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

  .current-plan-card {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .support-contacts {
    flex-direction: column;
  }
}

@media (max-width: 480px) {

  .invoice-list,
  .invoice-details,
  .users-section,
  .products-section,
  .filters-section {
    padding: 0.75rem;
  }

  .user-info,
  .product-info {
    flex-direction: column;
    text-align: center;
  }

  .activity-item {
    flex-direction: column;
    text-align: center;
  }

  .activity-meta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

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

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

.dashboard .dashboard-grid .dashboard-section {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dashboard .dashboard-grid .dashboard-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.products-list .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.products-list .product-item:last-child {
  border-bottom: none;
}

.products-list .product-item .product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
}

.products-list .product-item .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.products-list .product-item .product-image .no-image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #6c757d;
}

.products-list .product-item .product-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.products-list .product-item .product-info h3 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.products-list .product-item .product-info h3 a {
  color: #000000;
  text-decoration: none;
}

.products-list .product-item .product-info h3 a:hover {
  color: #06befb;
}

.products-list .product-item .product-info .product-price {
  font-weight: 600;
  color: #06befb;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.products-list .product-item .product-info .product-status {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.products-list .product-item .product-info .product-status.status-published {
  background: #d4edda;
  color: #155724;
}

.products-list .product-item .product-info .product-status.status-draft {
  background: #fff3cd;
  color: #856404;
}

.products-list .product-item .product-info .product-status.status-sold {
  background: #cce5ff;
  color: #004085;
}

.products-list .product-item .product-actions .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.inquiries-list .inquiry-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.inquiries-list .inquiry-item:last-child {
  border-bottom: none;
}

.inquiries-list .inquiry-item h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.inquiries-list .inquiry-item h4 a {
  color: #000000;
  text-decoration: none;
}

.inquiries-list .inquiry-item h4 a:hover {
  color: #06befb;
}

.inquiries-list .inquiry-item .inquiry-message {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.inquiries-list .inquiry-item .inquiry-meta {
  color: #6c757d;
  font-size: 0.8rem;
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
}

.notifications-header {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.notifications-header .notifications-info h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.notifications-header .notifications-info p {
  color: #6c757d;
  font-size: 1rem;
}

.notifications-header .notifications-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.notifications-content {
  padding: 2rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.notifications-list .notification-item {
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.notifications-list .notification-item.unread {
  border-left: 4px solid #06befb;
  background: rgba(6, 190, 251, 0.02);
}

.notifications-list .notification-item:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.notifications-list .notification-item .notification-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #06befb;
  font-size: 1.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.notifications-list .notification-item .notification-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.notifications-list .notification-item .notification-content .notification-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .notifications-list .notification-item .notification-content .notification-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.notifications-list .notification-item .notification-content .notification-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.notifications-list .notification-item .notification-content .notification-header .notification-time {
  color: #6c757d;
  font-size: 0.8rem;
}

.notifications-list .notification-item .notification-content .notification-body {
  margin-bottom: 1rem;
}

.notifications-list .notification-item .notification-content .notification-body p {
  color: #474445;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.notifications-list .notification-item .notification-content .notification-body .notification-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  color: #06befb;
  font-size: 0.9rem;
}

.notifications-list .notification-item .notification-content .notification-body .notification-product a {
  color: #06befb;
  text-decoration: none;
}

.notifications-list .notification-item .notification-content .notification-body .notification-product a:hover {
  text-decoration: underline;
}

.notifications-list .notification-item .notification-content .notification-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.notifications-list .notification-item .notification-content .notification-actions .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.notifications-list .notification-item .notification-content .notification-actions .btn-danger {
  background: #dc3545;
  color: #ffffff;
  border: 1px solid #dc3545;
}

.notifications-list .notification-item .notification-content .notification-actions .btn-danger:hover {
  background: #bd2130;
  border-color: #bd2130;
}

.no-notifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 400px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-notifications .no-notifications-content {
  text-align: center;
  max-width: 400px;
  padding: 2rem;
}

.no-notifications .no-notifications-content i {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.no-notifications .no-notifications-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.no-notifications .no-notifications-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Enhanced Product Page Styles */
.product-page .navbar {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.product-page .navbar .nav-brand .logo {
  height: 40px;
}

@media (max-width: 768px) {
  .product-detail .product-layout {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-images .main-image {
    height: 300px;
  }

  .product-images .image-thumbnails .thumbnail {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .product-info .product-actions .btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .seller-info .seller-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .related-products .products-grid {
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

.product-detail .product-info .product-price .price {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .product-detail .product-info .product-price .price {
    font-size: 2rem;
  }
}

.product-detail .product-info .product-meta .meta-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}

.product-detail .product-info .product-meta .meta-item:last-child {
  border-bottom: none;
}



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

.contact-form .form-group label {
  font-weight: 600;
  color: #000000;
}

.contact-form .form-group textarea {
  min-height: 120px;
  border: 2px solid #e0e0e0;
}

.contact-form .form-group textarea:focus {
  border-color: #06befb;
  -webkit-box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

/* ========================================
   PROFESSIONAL PRODUCT PAGE STYLES
   ======================================== */

/* Product Page Layout */
.product-page {
  background: #f8f9fa;
  min-height: 100vh;
}

.product-page .navbar {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e9ecef;
}

.product-page .navbar .nav-brand .logo {
  height: 45px;
  transition: transform 0.3s ease;
}

.product-page .navbar .nav-brand .logo:hover {
  transform: scale(1.05);
}

/* Breadcrumb Navigation */
.breadcrumb {
  background: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.breadcrumb a {
  color: #06befb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #05a8d8;
}

.breadcrumb .separator {
  color: #dee2e6;
  margin: 0 0.5rem;
}

/* Product Detail Container */
.product-detail {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid #e9ecef;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2.5rem;
  align-items: start;
}

/* Product Images Section */
.product-images {
  position: relative;
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.main-image:hover {
  transform: scale(1.02);
}

.image-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumbnail:hover {
  border-color: #06befb;
  transform: translateY(-2px);
}

.thumbnail.active {
  border-color: #06befb;
  box-shadow: 0 4px 15px rgba(6, 190, 251, 0.3);
}

.no-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #6c757d;
  font-size: 1.2rem;
}

/* Product Info Section */
.product-info {
  padding: 0rem 0;
}

.product-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-price {
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #06befb;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(6, 190, 251, 0.1);
}

.currency {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 500;
}

.price-negotiable {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f5e8;
  color: #28a745;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Product Header */
.product-header {
  margin-bottom: 1.5rem;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-featured {
  background: #ffc107;
  color: #000;
}

.badge-urgent {
  background: #dc3545;
  color: white;
}

.badge-new {
  background: #28a745;
  color: white;
}


.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #495057;
  font-size: 0.95rem;
}

.meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.meta-item:first-child {
  padding-top: 0;
}

.meta-item i {
  color: #06befb;
  width: 16px;
  text-align: center;
}

/* Product Specifications */
.product-specs {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}

.product-specs h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #06befb;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.95rem;
}

.spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-item:first-child {
  padding-top: 0;
}

.spec-item strong {
  color: #495057;
  font-weight: 600;
}

.spec-item span {
  color: #212529;
  font-weight: 500;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Professional Button Styles for Product Page */
.product-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  min-height: 50px;
}

.product-page .btn-primary {
  background: linear-gradient(135deg, #06befb 0%, #05a8d8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(6, 190, 251, 0.3);
  flex: 1;
}

.product-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 190, 251, 0.4);
  color: white;
}

.product-page .btn-primary.btn-large {
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  min-height: 60px;
}

.product-page .btn-secondary {
  background: #ffffff;
  color: #6c757d;
  border: 2px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-page .btn-secondary:hover {
  border-color: #06befb;
  color: #06befb;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 190, 251, 0.2);
}

.product-page .btn-outline {
  background: transparent;
  color: #06befb;
  border: 2px solid #06befb;
}

.product-page .btn-outline:hover {
  background: #06befb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 190, 251, 0.3);
}

/* Button Icons */
.product-page .btn i {
  font-size: 1.1em;
}

/* Button Focus States */
.product-page .btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.3);
}

/* Button Active States */
.product-page .btn:active {
  transform: translateY(0);
}

/* Product Description */
.product-description {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}

.product-description h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #06befb;
}

.product-description p {
  color: #495057;
  line-height: 1.7;
  font-size: 1rem;
}

/* Seller Information */
.seller-info {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e9ecef;
  margin-bottom: 2rem;
}

.seller-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #06befb;
}

.seller-details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.seller-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06befb 0%, #05a8d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.seller-info-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
}

.seller-info-text p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.seller-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.seller-stat {
  text-align: center;
}

.seller-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #06befb;
}

.seller-stat .stat-label {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Related Products */
.related-products {
  margin-top: 3rem;
}

.related-products h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 2rem;
  text-align: center;
}

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

/* Category page specific grid - always 3 columns on desktop, 2 on mobile */
.category-page .products-grid,
.category-content .products-grid,
.products-content .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}


.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}


.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card .product-info {
  padding: 0.5rem 0.5rem;
  justify-content: space-between;
}

.product-card .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #06befb;
  margin-bottom: 0.5rem;
}

.product-card .product-location {
  color: #6c757d;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Modal Styles */


@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

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

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2,
.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
}

.modal-close,
.close {
  color: #6c757d;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover,
.close:hover {
  color: #dc3545;
  background: #f8f9fa;
}

.modal-body {
  padding: 2rem;
}

/* Contact Form */
.contact-form {
  padding: 2rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06befb;
  box-shadow: 0 0 0 3px rgba(6, 190, 251, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-layout {
    gap: 2rem;
    padding: 2rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .price {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .product-title {
    font-size: 1.8rem;
  }

  .price {
    font-size: 2.2rem;
  }

  .main-image {
    height: 300px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }

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

  .product-page .btn {
    width: 100%;
    justify-content: center;
  }

  .seller-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .seller-stats {
    justify-content: space-around;
    width: 100%;
  }

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

  /* Category page specific mobile grid - always 2 columns on mobile */
  .category-page .products-grid,
  .category-content .products-grid,
  .products-content .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }


  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-detail {
    margin: 1rem 0;
    border-radius: 8px;
  }

  .product-layout {
    padding: 1rem;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2rem;
  }

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

  /* Category page specific small mobile grid - 1 column on very small screens */
  .category-page .products-grid,
  .category-content .products-grid,
  .products-content .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

}

@media print {

  .navbar,
  .mobile-menu-overlay,
  .newsletter,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero {
    background: none;
    color: #000000;
  }
}

/* Free package notice styling */
.free-package-notice {
  margin: 2rem 0;
  text-align: center;
}

.free-package-notice .success-message {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.free-package-notice .success-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.free-package-notice .success-message h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.free-package-notice .success-message p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

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


@media (max-width: 768px) {
  #font-kategoria {
    font-size: 14px !important;
  }

  #icon-box {
    padding: 0px;
    margin: 0px;
  }

  #categories-boxes {
    margin-top: 0px;
    gap: 0px;
    grid-auto-columns: minmax(5.5rem, 1fr);
  }

}