@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* Custom Style Overrides for Sikandar CRM Luther Integration */

:root {
  --font-1: "JetBrains Mono", monospace !important;
  --font-2: "JetBrains Mono", monospace !important;
  --font-mono: "JetBrains Mono", monospace !important;

  /* Brand color overrides for Luther variables */
  --circle-color: rgba(255, 255, 255, 0.1);
  --color-1: #ffffff !important;
  --color-2: #cccccc !important;
  --color-body: #1e2024 !important;
  --color-gray-10: #1e2024 !important;
  --color-gray-9: #1e2024 !important;
  --color-border: rgba(255, 255, 255, 0.08) !important;
  --color-text: #92a4a8 !important;
  --color-text-dark: #ffffff !important;

  /* Layout support values */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-focus: #ffffff;
  --primary-cyan: #3b82f6;
  --primary-blue: #cccccc;
  --success: #ffffff;
  --warning: #cccccc;
  --error: #888888;
  --glow-cyan: rgba(255, 255, 255, 0.15);

  /* Button overrides for black & white theme */
  --color-btn-primary: #ffffff !important;
  --color-btn-primary-text: #000000 !important;
  --color-btn-primary-hover: #e0e0e0 !important;
  --color-btn-primary-hover-text: #000000 !important;

  --color-btn: #1e2024 !important;
  --color-btn-text: #ffffff !important;
  --color-btn-hover: #ffffff !important;
  --color-btn-hover-text: #000000 !important;
}

/* Custom header adjustment for main brand name alignment */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Forms override for premium bordered fields */
.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.form-control {
  width: 100%;
  background: #1e2024 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-size: 15px !important;
  color: #fff !important;
  height: auto !important;
  line-height: inherit !important;
  box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.5),
    inset -3px -3px 8px rgba(255, 255, 255, 0.02) !important;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  background: #1e2024 !important;
  box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.6),
    inset -3px -3px 8px rgba(255, 255, 255, 0.02),
    0 0 10px rgba(255, 255, 255, 0.2) !important;
}


textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Checkout layout adjustments */
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.checkout-card {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 40px;
  box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.03), 8px 8px 25px rgba(0, 0, 0, 0.5) !important;
}

.checkout-summary {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.03), 8px 8px 25px rgba(0, 0, 0, 0.5) !important;
}

.form-card {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 50px 40px;
  box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.03), 8px 8px 25px rgba(0, 0, 0, 0.5) !important;
}

.feature-card {
  background: #1e2024 !important;
  border: none !important;
  padding: 40px !important;
  border-radius: 32px !important;
  height: 100%;
  box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.02), 8px 8px 25px rgba(0, 0, 0, 0.5) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}


.checkout-plan-details {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.checkout-row.total {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-cyan);
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 8px;
}

.payment-badge-wrap {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
}

/* Database Table Layout Adjustments */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  text-align: left;
}

th,
td {
  padding: 16px !important;
  border-bottom: 1px solid var(--border-color) !important;
  font-size: 14px !important;
}

th {
  color: #fff !important;
  font-weight: 600 !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.01) !important;
}

/* Status Badge Overrides */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.success {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.status-badge.pending {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #cccccc !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-badge.failed {
  background: rgba(255, 255, 255, 0.02) !important;
  color: #888888 !important;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.status-badge.new {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-badge.contacted {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #dddddd !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-badge.qualified {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #eeeeee !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.status-badge.closed {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Admin Dashboard layout styles */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.admin-sidebar {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 24px;
  box-shadow: -6px -6px 15px rgba(255, 255, 255, 0.02), 6px 6px 15px rgba(0, 0, 0, 0.4) !important;
}

.admin-nav-item {
  padding: 12px 16px;
  border-radius: 4px;
  color: var(--color-text);
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03);
}

.admin-nav-item.active {
  border-left: 3px solid var(--primary-cyan);
  border-radius: 0 4px 4px 0;
  background: rgba(67, 186, 255, 0.05);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Pricing Grid alignments */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 32px !important;
  /* Highly rounded corners */
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center horizontally */
  text-align: center;
  /* Center text */
  /* Recessed/inset neumorphic shadow */
  box-shadow: inset -8px -8px 20px rgba(255, 255, 255, 0.02),
    inset 8px 8px 25px rgba(0, 0, 0, 0.5) !important;
  position: relative;
  overflow: visible !important;
  /* Prevent button cut off */
  height: 100%;
}

.pricing-card.popular {
  border: none !important;
  box-shadow: inset -8px -8px 20px rgba(255, 255, 255, 0.02),
    inset 8px 8px 25px rgba(0, 0, 0, 0.55),
    0 0 15px rgba(255, 255, 255, 0.05) !important;
}

.pricing-card.popular::after {
  content: 'POPULAR';
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffffff;
  color: #000000;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}


.pricing-plan-name {
  font-size: 18px !important;
  color: #fff !important;
  margin-bottom: 24px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
  width: 100%;
}

/* Horizontal accent lines under the plan names */
.pricing-plan-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 99px;
}

/* Accent line colors for each tier */
.pricing-grid>div .pricing-plan-name::after {
  background: #ffffff !important;
}

/* Accent checkmark colors for each tier */
.pricing-grid>div .pricing-features li::before {
  color: #ffffff !important;
}

/* Customize buttons for each tier */
.pricing-grid>div .btn {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

.pricing-grid>div .btn:hover, .pricing-card .btn:hover {
  background: transparent !important;
  color: var(--primary-cyan) !important;
  transform: translateY(0) !important;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(255, 255, 255, 0.02) !important;
}

.pricing-price {
  font-size: 40px !important;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  /* Center price content */
  font-family: var(--font-2);
}

.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-left: 6px;
  font-family: var(--font-1);
}

.pricing-desc {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 30px;
  min-height: 48px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin: 0 auto 40px auto !important;
  /* Center the list block, but text inside is left-aligned */
  width: fit-content;
  text-align: left;
  flex-grow: 0 !important;
  padding-left: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.pricing-features li {
  font-size: 14px !important;
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text) !important;
  padding-left: 0 !important;
}

.pricing-features li::before {
  content: '✓' !important;
  color: #3b82f6 !important;
  font-weight: bold;
  background: none !important;
  width: auto !important;
  height: auto !important;
  position: static !important;
}

.feature-list li::marker {
  color: #3b82f6 !important;
}

.pricing-card .btn {
  border-radius: 99px !important;
  /* Extremely rounded button like standard design example */
  width: 100% !important;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: auto !important;
  /* Aligns the button at the bottom of stretched cards */
}

/* Edit pricing grid widgets inside admin */
.editor-row {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.editor-inputs {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

/* Feature Card Elements styling */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 40px !important;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #1e2024;
  /* Inset neumorphic shadow for the carved look */
  box-shadow: inset -3px -3px 7px rgba(255, 255, 255, 0.03), inset 3px 3px 7px rgba(0, 0, 0, 0.5) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  /* Glowing border on hover */
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset -3px -3px 7px rgba(255, 255, 255, 0.03), inset 3px 3px 7px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.2) !important;
  transform: scale(1.05);
}

.feature-title {
  font-family: var(--font-2);
  font-weight: 600;
  font-size: 20px !important;
  color: #ffffff !important;
  margin-top: 0;
  margin-bottom: 12px !important;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: var(--color-text) !important;
  margin: 0;
}

/* Media Query Adaptations */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .checkout-wrapper {
    grid-template-columns: 1fr;
  }

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

/* Unify all grid rows to the same premium width */
.row {
  width: 92% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.wide {
  max-width: 1400px !important;
}

/* Contact and Footer Card Rows (same width as other sections) */
.contact-fullwidth-row {
  width: 92% !important;
  max-width: 1400px !important;
  margin: 0 auto 15px auto !important;
}

/* Restore nested row behavior for grid columns */
.row .row {
  width: auto !important;
  max-width: none !important;
  margin-left: calc(var(--gutter) * -1) !important;
  margin-right: calc(var(--gutter) * -1) !important;
}

@media screen and (max-width: 600px) {
  /* Side and vertical padding of sections */
  #products,
  #contact,
  .s-works,
  .s-contact {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .row,
  .contact-fullwidth-row {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Narrow padding inside all cards */
  .pricing-card,
  .form-card,
  .footer-neumorphic-card,
  .checkout-card,
  .feature-card,
  .checkout-summary {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }

  /* Narrow spacing for grid */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 20px !important;
  }

  .products-filter-container {
    padding: 0 !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .products-filter-container .search-wrap {
    max-width: 100% !important;
    width: 100% !important;
  }

  .products-filter-container .tabs-wrap {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 6px !important;
  }

  .filter-btn {
    padding: 6px 12px !important;
    font-size: 10px !important;
  }

  .form-group {
    margin-bottom: 16px !important;
  }

  .pricing-features {
    margin-bottom: 24px !important;
  }

  .pricing-card .btn {
    padding: 12px 24px !important;
    height: auto !important;
    line-height: 1.2 !important;
  }
}

/* Footer Neumorphic Styling */
.footer-neumorphic-card {
  background: #1e2024 !important;
  border: 1px solid rgba(255, 255, 255, 0.01) !important;
  border-radius: 24px !important;
  padding: 50px 40px !important;
  margin-bottom: 10px !important;
  /* Recessed/inset neumorphic shadow */
  box-shadow: inset -6px -6px 15px rgba(255, 255, 255, 0.02),
    inset 6px 6px 15px rgba(0, 0, 0, 0.6) !important;
}

/* Override excessive content and footer vertical spacing */
.s-content {
  padding-bottom: 15px !important;
}

.s-footer {
  border-top: none !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.footer-heading {
  font-family: var(--font-2);
  font-weight: 700;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-cyan) !important;
  margin-bottom: 20px !important;
  margin-top: 0;
}

/* Footer Contact Item Alignment */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  stroke: var(--primary-cyan);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-text {
  font-family: var(--font-1);
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: var(--color-text) !important;
}

.footer-contact-text strong {
  color: #fff !important;
}

.footer-contact-text a {
  color: var(--color-text) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-text a:hover {
  color: #fff !important;
}

.footer-social-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Circular social badges */
.social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  background: #1e2024 !important;
  color: var(--color-text) !important;
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: -4px -4px 10px rgba(255, 255, 255, 0.02),
    4px 4px 10px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-badge svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.social-badge:hover {
  color: var(--primary-cyan) !important;
  background: #1e2024 !important;
  box-shadow: -4px -4px 10px rgba(255, 255, 255, 0.02),
    4px 4px 10px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Neumorphic Buttons Override */
.btn {
  border: none !important;
  border-radius: 99px !important;
  box-shadow: -4px -4px 10px rgba(255, 255, 255, 0.02),
    4px 4px 12px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s ease !important;
}

.btn:hover, .btn--stroke:hover, .btn--primary:hover, .neu-btn:hover {
  transform: translateY(0) !important;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5),
    inset -2px -2px 5px rgba(255, 255, 255, 0.02) !important;
  background-color: transparent !important;
  color: var(--primary-cyan) !important;
}

.btn:active {
  transform: translateY(0) !important;
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.6),
    inset -4px -4px 10px rgba(255, 255, 255, 0.01) !important;
}

/* About Page Neumorphic Cards */
.stat-card {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 30px !important;
  box-shadow: -6px -6px 15px rgba(255, 255, 255, 0.02),
    6px 6px 15px rgba(0, 0, 0, 0.4) !important;
  flex: 1 1 calc(50% - 10px);
}

.service-card {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 40px !important;
  height: 100%;
  box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.02),
    8px 8px 25px rgba(0, 0, 0, 0.5) !important;
}

/* Recessed Neumorphic Button */
.btn-recessed {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px !important;
  border-radius: 99px !important;
  background: #1e2024 !important;
  border: none !important;
  color: var(--primary-cyan) !important;
  font-family: var(--font-2);
  font-size: 13px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.6),
    inset -4px -4px 10px rgba(255, 255, 255, 0.02) !important;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-recessed:hover {
  color: #fff !important;
  box-shadow: inset 5px 5px 12px rgba(0, 0, 0, 0.7),
    inset -5px -5px 12px rgba(255, 255, 255, 0.03),
    0 0 15px rgba(255, 255, 255, 0.15) !important;
}

/* Admin Dashboard Neumorphic Elements */
.admin-sidebar {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 24px !important;
  box-shadow: -6px -6px 15px rgba(255, 255, 255, 0.02),
    6px 6px 15px rgba(0, 0, 0, 0.4) !important;
  height: fit-content !important;
}

.admin-content {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 32px !important;
  padding: 40px !important;
  box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.02),
    8px 8px 25px rgba(0, 0, 0, 0.5) !important;
}

.admin-stat-card {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.02),
    inset 4px 4px 10px rgba(0, 0, 0, 0.5) !important;
}

.admin-chart-card {
  background: #1e2024 !important;
  border: none !important;
  border-radius: 24px !important;
  margin-bottom: 40px !important;
  padding: 30px !important;
  box-shadow: inset -5px -5px 12px rgba(255, 255, 255, 0.02),
    inset 5px 5px 12px rgba(0, 0, 0, 0.5) !important;
}

/* Alpha-based Drop-shadow Neumorphic Image */
.about-info__pic {
  border-radius: 24px !important;
  filter: drop-shadow(-10px -10px 15px rgba(255, 255, 255, 0.015)) drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5)) !important;
  transition: transform 0.3s ease !important;
}

.about-info__pic:hover {
  transform: scale(1.02) !important;
  filter: drop-shadow(-12px -12px 20px rgba(255, 255, 255, 0.02)) drop-shadow(12px 12px 25px rgba(0, 0, 0, 0.6)) !important;
}

/* Image Inset Tray Styling */
.image-inset-tray {
  background: #1e2024 !important;
  border-radius: 32px !important;
  padding: 30px !important;
  box-shadow: inset -8px -8px 20px rgba(255, 255, 255, 0.02),
    inset 8px 8px 25px rgba(0, 0, 0, 0.5) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden !important;
}

.image-inset-tray img {
  border-radius: 24px !important;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Monochromatic Filter & Search Styles */
.products-filter-container {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.products-filter-container .search-wrap {
  position: relative;
  flex: 1;
  max-width: 350px;
  min-width: 250px;
}

.products-filter-container .search-wrap span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text);
  font-size: 16px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

#product-search {
  width: 100% !important;
  padding: 12px 20px 12px 45px !important;
  background: #1e2024 !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 99px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: var(--font-1) !important;
  outline: none !important;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4) !important;
  transition: all 0.3s ease !important;
  height: auto !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

#product-search:focus {
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5), 0 0 10px rgba(255, 255, 255, 0.1) !important;
}

.products-filter-container .tabs-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #1e2024 !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-text) !important;
  padding: 8px 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-radius: 99px !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  height: auto !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

.filter-btn:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.filter-btn.active {
  background: #ffffff !important;
  color: #121417 !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15) !important;
}

/* Custom Mobile Bottom Navbar for this Theme */
@media screen and (max-width: 800px) {
  .s-header {
    top: auto !important;
    bottom: 0 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: none !important;
    background: #1e2024 !important;
  }
  
  .header-mobile {
    border-bottom: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Make menu open upwards */
  .main-nav-wrap {
    top: auto !important;
    bottom: 100% !important;
    transform-origin: center bottom !important;
    border-bottom: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: #1e2024 !important;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.4) !important;
  }
  
  .main-nav {
    transform: translateY(2rem) !important;
    padding-bottom: 2rem !important;
  }

  .menu-is-open .main-nav {
    transform: translateY(0) !important;
  }

  /* Adjust padding so content is not hidden behind the bottom navbar */
  body, .s-pagewrap {
    padding-bottom: 60px !important; 
  }
  
  .s-content {
    padding-top: 40px !important;
  }
}