.product-image-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;

    display: flex;              /* مهم */
    align-items: center;        /* توسيط رأسي */
    justify-content: center;    /* توسيط أفقي */
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    position: absolute; /* بدل relative */
}
.category-wrapper .type-dots {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
}

.type-dropdown button {
    display: block;
    width: 100%;
    padding: 5px 10px;
    border: none;
    background: white;
    text-align: left;
    cursor: pointer;
}

.type-dropdown button:hover {
    background: #f0f0f0;
}
/* Navigation Links */
header nav a {
  position: relative;
  text-decoration: none;
  padding: 0.5rem 0;
  margin: 0 0.5rem;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a.text-blue-500::after {
  width: 100%;
}

/* Main Content Spacing */
main {
  padding-top: 80px;
  /* Account for fixed header */
  position: relative;
  z-index: 10;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0e14;
  color: white;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Full Page Bubble Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.bubble-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

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

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #0b0e14;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 3px;
}

/* Background Textures */
.bg-texture {
  background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}

.hero-slice {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: transform 1s;
  height: 100%;
  width: 100%;
  transform: rotate(-8deg) scale(1.3);
  transform-origin: center center;
  overflow: hidden;
}

.hero-slice:hover {
  transform: rotate(-8deg) scale(1.35);
}

.hero-slice:nth-child(1) {
  background-image: url('https://i.ibb.co/R4d5kZcr/wedewf.jpg?auto=format&fit=crop&q=80&w=1200');
}

.hero-slice:nth-child(2) {
  background-image: url('https://i.ibb.co/35CBGssT/mcm.webp?auto=format&fit=crop&q=80&w=1200');
}

.hero-slice:nth-child(3) {
  background-image: url('https://i.ibb.co/Q79RxgMk/qwdwqdqd.jpg?auto=format&fit=crop&q=80&w=1200');
}

.hero-slice:nth-child(4) {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-overlay .slice {
  flex: 1;
  height: 100%;
  width: 100%;
  transform: rotate(-8deg) scale(1.3);
  overflow: hidden;
}

.hero-overlay .slice:nth-child(1) {
  background: rgba(37, 99, 235, 0.2);
}

.hero-overlay .slice:nth-child(2) {
  background: rgba(0, 0, 0, 0.3);
}

.hero-overlay .slice:nth-child(3) {
  background: rgba(37, 99, 235, 0.1);
}

.hero-overlay .slice:nth-child(4) {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  text-align: left;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 4rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-title .accent {
  color: #3b82f6;
}

.hero-button {
  background: #3b82f6;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2rem;
  border-radius: 0.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.hero-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.hero-droplets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url('https://www.transparenttextures.com/patterns/water.png');
}

/* Bubble Background */
.bubble-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 15;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle, rgba(245, 246, 248, 0.4) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 20%;
  animation-duration: 14s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 35%;
  animation-duration: 16s;
  animation-delay: 2s;
}

.bubble:nth-child(4) {
  width: 40px;
  height: 40px;
  left: 50%;
  animation-duration: 13s;
  animation-delay: 0.5s;
}

.bubble:nth-child(5) {
  width: 70px;
  height: 70px;
  left: 65%;
  animation-duration: 15s;
  animation-delay: 3s;
}

.bubble:nth-child(6) {
  width: 90px;
  height: 90px;
  left: 80%;
  animation-duration: 17s;
  animation-delay: 1.5s;
}

.bubble:nth-child(7) {
  width: 50px;
  height: 50px;
  left: 15%;
  animation-duration: 14s;
  animation-delay: 4s;
}

.bubble:nth-child(8) {
  width: 75px;
  height: 75px;
  left: 45%;
  animation-duration: 16s;
  animation-delay: 2.5s;
}

.bubble:nth-child(9) {
  width: 55px;
  height: 55px;
  left: 70%;
  animation-duration: 13s;
  animation-delay: 3.5s;
}

.bubble:nth-child(10) {
  width: 85px;
  height: 85px;
  left: 25%;
  animation-duration: 15s;
  animation-delay: 0.8s;
}

.bubble:nth-child(11) {
  width: 45px;
  height: 45px;
  left: 55%;
  animation-duration: 14s;
  animation-delay: 4.5s;
}

.bubble:nth-child(12) {
  width: 65px;
  height: 65px;
  left: 85%;
  animation-duration: 16s;
  animation-delay: 1.2s;
}

.bubble:nth-child(13) {
  width: 95px;
  height: 95px;
  left: 5%;
  animation-duration: 17s;
  animation-delay: 2.8s;
}

.bubble:nth-child(14) {
  width: 35px;
  height: 35px;
  left: 40%;
  animation-duration: 12s;
  animation-delay: 3.8s;
}

.bubble:nth-child(15) {
  width: 72px;
  height: 72px;
  left: 75%;
  animation-duration: 15s;
  animation-delay: 0.3s;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  50% {
    transform: translateX(20px) scale(1.1);
    opacity: 0.8;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    bottom: 200vh;
    transform: translateX(-20px) scale(0.8);
    opacity: 0;
  }
}

/* Product Grid Section */
.product-grid {
  padding: 5rem 0;
  background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

.product-grid-header {
  margin-bottom: 4rem;
}

.product-grid-title {
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .product-grid-title {
    text-align: left;
  }
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .category-tabs {
    justify-content: flex-start;
    gap: 2rem;
  }
}

.category-tab {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 0.5rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
}

.category-tab:hover {
  color: white;
}

.category-tab.active {
  color: #3b82f6;
}

.category-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #3b82f6;
  border-radius: 9999px;
}

.products-section {
  margin-top: 2rem;
}

.products-header {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
}

.products-header::before {
  content: '';
  width: 3rem;
  height: 1px;
  background: #3b82f6;
  margin-right: 1rem;
}

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

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

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

/* Product Card */
.product-card {
  background: #1a1e26;
  border-radius: 0.125rem;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border: 2px solid #3b82f6;
}

.product-image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-image-container {
    aspect-ratio: 4/3;
  }
}

.product-image {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}

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

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-name {
    font-size: 0.875rem;
  }
}

.product-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
}

.product-button {
  background: #3b82f6;
  color: white;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  border-radius: 0.125rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.product-button:hover {
  background: #2563eb;
}

/* Utility Classes */
.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.tracking-widest {
  letter-spacing: 0.2em;
}

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

.font-black {
  font-weight: 900;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-blue-600 {
  color: #2563eb;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.bg-blue-700 {
  background-color: #1d4ed8;
}

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}

.hover\:text-blue-500:hover {
  color: #3b82f6;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.shadow-\[0_0_20px_rgba\(37\,99\,235\,0\.4\)\] {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-600:focus {
  --tw-ring-color: #2563eb;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:ring-2:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.hover\:ring-blue-600:hover {
  --tw-ring-color: #2563eb;
}

/* Responsive Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Flexbox */
.flex {
  display: flex;
}

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

.flex-grow {
  flex-grow: 1;
}

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

.items-start {
  align-items: flex-start;
}

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

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

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

.space-x-2>*+* {
  margin-left: 0.5rem;
}

.space-x-4>*+* {
  margin-left: 1rem;
}

.space-x-6>*+* {
  margin-left: 1.5rem;
}

.space-x-8>*+* {
  margin-left: 2rem;
}

.space-x-10>*+* {
  margin-left: 2.5rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

/* Spacing */
.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

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

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

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

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

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

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

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

.mr-4 {
  margin-right: 1rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.ml-4 {
  margin-left: 1rem;
}

/* Positioning */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  inset: 0px;
}

.top-0 {
  top: 0px;
}

.left-0 {
  left: 0px;
}

.right-0 {
  right: 0px;

}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* Sizing */
.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-12 {
  width: 3rem;
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.min-h-\[700px\] {
  min-height: 700px;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Display */
.block {
  display: block;
}

.hidden {
  display: none;
}

.pointer-events-none {
  pointer-events: none;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-20 {
  opacity: 0.2;
}

/* Border */
.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

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

/* Background */
.bg-\[\#0b0e14\] {
  background-color: #0b0e14;
}

.bg-\[\#1a1e26\] {
  background-color: #1a1e26;
}

.bg-\[\#0b0e14\]\/80 {
  background-color: rgba(11, 14, 20, 0.8);
}

/* Selection */
.selection\:bg-blue-600 *::selection {
  background-color: #2563eb;
}

.selection\:text-white *::selection {
  color: white;
}

/* Media Queries */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

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

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Line Clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Drop Shadow */
.drop-shadow-2xl {
  --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

/* Gray and White Navbar Styles - Updated */


header .nav-link {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

header .nav-link:hover {
  color: #f8f9fa !important;
}

header .nav-link-active {
  color: #e9ecef !important;
  font-weight: 800;
}

header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

header .nav-link:hover::after,
header .nav-link-active::after {
  width: 100%;
}

header .login-button {
  background: #3b82f6 !important;
  color: white !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block !important;
}

header .login-button:hover {
  background: #498bf5 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header .mobile-menu-btn {
  color: white !important;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

header .mobile-menu-btn:hover {
  color: #f8f9fa !important;
}

/* Force visibility of login button */
.hidden.md\:block {
  display: none !important;
}

@media (min-width: 768px) {
  .hidden.md\:block {
    display: inline-block !important;
  }
}

/* Updated Design to Match Reference */
.navbar-gray {
  background: rgba(15, 23, 42, 0.95) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(10px) !important;
}

.logo-container {
  background: transparent !important;
  padding: 8px !important;
}

/* Logo in header: fixed size only */
.header-logo-wrap,
header .header-logo-wrap {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  overflow: hidden !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}
.header-logo,
header .header-logo,
.logo-container .header-logo {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Logo in footer: fixed size only */
.footer-logo-wrap,
footer .footer-logo-wrap {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  overflow: hidden !important;
  display: inline-block !important;
}
.footer-logo-img,
footer .footer-logo-img,
.footer-logo .footer-logo-img {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  object-fit: contain !important;
  display: block !important;
}

.logo-container .text-white {
  color: #3b82f6 !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
}

/* Override body background to match dark theme */
body {
  background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 50%, #020617 100%) !important;
  background-attachment: fixed !important;
  position: relative;
}

/* Enhanced bubble background with more particles */
.bubble-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bubble {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: rise 15s infinite ease-in;
}

/* More bubbles with different sizes and positions */
.bubble:nth-child(1) {
  width: 25px;
  height: 25px;
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 35px;
  height: 35px;
  left: 20%;
  animation-duration: 10s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 18px;
  height: 18px;
  left: 35%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.bubble:nth-child(4) {
  width: 45px;
  height: 45px;
  left: 50%;
  animation-duration: 9s;
  animation-delay: 0.5s;
}

.bubble:nth-child(5) {
  width: 28px;
  height: 28px;
  left: 65%;
  animation-duration: 11s;
  animation-delay: 3s;
}

.bubble:nth-child(6) {
  width: 38px;
  height: 38px;
  left: 80%;
  animation-duration: 13s;
  animation-delay: 1.5s;
}

.bubble:nth-child(7) {
  width: 22px;
  height: 22px;
  left: 15%;
  animation-duration: 10s;
  animation-delay: 4s;
}

.bubble:nth-child(8) {
  width: 32px;
  height: 32px;
  left: 45%;
  animation-duration: 12s;
  animation-delay: 2.5s;
}

.bubble:nth-child(9) {
  width: 20px;
  height: 20px;
  left: 70%;
  animation-duration: 9s;
  animation-delay: 3.5s;
}

.bubble:nth-child(10) {
  width: 30px;
  height: 30px;
  left: 25%;
  animation-duration: 11s;
  animation-delay: 0.8s;
}

.bubble:nth-child(11) {
  width: 24px;
  height: 24px;
  left: 55%;
  animation-duration: 10s;
  animation-delay: 4.5s;
}

.bubble:nth-child(12) {
  width: 42px;
  height: 42px;
  left: 85%;
  animation-duration: 12s;
  animation-delay: 1.2s;
}

.bubble:nth-child(13) {
  width: 16px;
  height: 16px;
  left: 5%;
  animation-duration: 13s;
  animation-delay: 2.8s;
}

.bubble:nth-child(14) {
  width: 36px;
  height: 36px;
  left: 40%;
  animation-duration: 8s;
  animation-delay: 3.8s;
}

.bubble:nth-child(15) {
  width: 26px;
  height: 26px;
  left: 75%;
  animation-duration: 11s;
  animation-delay: 0.3s;
}

/* Add more bubbles */
.bubble:nth-child(16) {
  width: 14px;
  height: 14px;
  left: 12%;
  animation-duration: 14s;
  animation-delay: 1.8s;
}

.bubble:nth-child(17) {
  width: 34px;
  height: 34px;
  left: 32%;
  animation-duration: 9s;
  animation-delay: 4.2s;
}

.bubble:nth-child(18) {
  width: 21px;
  height: 21px;
  left: 58%;
  animation-duration: 12s;
  animation-delay: 2.1s;
}

.bubble:nth-child(19) {
  width: 48px;
  height: 48px;
  left: 78%;
  animation-duration: 10s;
  animation-delay: 3.3s;
}

.bubble:nth-child(20) {
  width: 27px;
  height: 27px;
  left: 88%;
  animation-duration: 11s;
  animation-delay: 1.7s;
}

@keyframes rise {
  0% {
    bottom: -20px;
    transform: translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    transform: translateX(10px) scale(1);
    opacity: 0.8;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    bottom: 100vh;
    transform: translateX(-10px) scale(0.5);
    opacity: 0;
  }
}

/* Add floating particles overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Add texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="0.3" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="0.4" fill="rgba(255,255,255,0.04)"/><circle cx="70" cy="10" r="0.2" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.6" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
}

/* Update hero section to match design */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em !important;
  margin-bottom: 2rem !important;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  color: white !important;
}

.hero-button {
  background: #3b82f6 !important;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
  padding: 1rem 2rem;
  border-radius: 4px !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  font-size: 0.875rem !important;
}

.hero-button:hover {
  background: #2563eb !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

/* Update product grid section */
.product-grid {
  padding: 5rem 0;
  background: transparent !important;
}

.product-grid-title {
  font-size: 2.5rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem !important;
  color: white !important;
}

.category-tab {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  position: relative;
  padding: 0.75rem 1.5rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  color: #94a3b8 !important;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.category-tab:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.category-tab.active {
  color: white !important;
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
}

.category-tab.active::after {
  display: none;
}

.products-header {
  font-size: 1.25rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem !important;
  color: white !important;
  display: flex;
  align-items: center;
}

.products-header::before {
  content: '';
  width: 3rem;
  height: 2px !important;
  background: #3b82f6;
  margin-right: 1rem;
}

/* Update product cards */
.product-card {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  border-color: #3b82f6 !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.product-button {
  background: #3b82f6 !important;
  color: white;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 4px !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.product-button:hover {
  background: #2563eb !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Update footer to match dark theme */
footer {
  background: rgba(15, 23, 42, 0.95) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Add floating particles effect */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Enhanced atmospheric effects for hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 400px 300px at 100% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

/* Enhanced product grid background */
.product-grid {
  position: relative;
}

.product-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 400px 300px at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure content is above background effects */
.product-grid .container {
  position: relative;
  z-index: 2;
}

/* COMPREHENSIVE RESPONSIVE DESIGN */

/* Mobile First Approach - Base styles for mobile */
@media (max-width: 480px) {

  /* Header/Navbar */
  .navbar-gray {
    padding: 0.5rem 0;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-container .text-white {
    font-size: 1.5rem !important;
  }

  header nav {
    display: none !important;
  }

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

  .login-button {
    display: none !important;
  }

  /* Hero Section */
  .hero {
    min-height: 60vh;
    height: 60vh;
  }

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

  .athlete-card {
    height: 33.333%;
    min-height: 200px;
  }

  .hero-content {
    padding: 0 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .hero-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.2;
  }

  .hero-button {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.75rem !important;
    width: 100%;
    max-width: 280px;
  }

  /* Product Grid */
  .product-grid {
    padding: 3rem 0;
  }

  .product-grid-title {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center;
  }

  .category-tabs {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .category-tab {
    padding: 0.75rem 1rem !important;
    text-align: center;
    width: 100%;
  }

  .products-header {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .products-header::before {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

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

  .product-card {
    max-width: 100%;
  }

  .product-info {
    padding: 0.75rem;
  }

  .product-name {
    font-size: 0.75rem !important;
    line-height: 1.3;
  }

  .product-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .product-button {
    width: 100%;
    padding: 0.75rem !important;
  }

  /* Footer */
  footer {
    padding: 2rem 0 1rem 0 !important;
  }

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

  footer .md\:col-span-2 {
    grid-template-columns: 1fr !important;
  }

  footer .flex {
    flex-direction: column;
    gap: 0.5rem;
  }

  footer input {
    margin-bottom: 0.5rem;
  }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {

  /* Header */
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  header nav {
    display: none !important;
  }

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

  /* Hero */
  .hero {
    min-height: 70vh;
    height: 70vh;
  }

  .hero-title {
    font-size: 2.25rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-button {
    padding: 0.875rem 2rem !important;
    font-size: 0.8rem !important;
  }

  /* Products */
  .product-grid-title {
    font-size: 2rem !important;
  }

  .category-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .category-tab {
    flex: 0 0 auto;
    min-width: 120px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem;
  }

  /* Footer */
  footer .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  footer .md\:col-span-2 {
    grid-column: span 2;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape / Small Desktop */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Header */
  header nav {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: none !important;
  }

  .login-button {
    display: inline-block !important;
  }

  header nav a {
    font-size: 0.75rem !important;
    margin: 0 0.75rem;
  }

  /* Hero */
  .hero-title {
    font-size: 3rem !important;
  }

  .hero-button {
    padding: 1rem 2.25rem !important;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
  }

  .category-tabs {
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Large Desktop */
@media (min-width: 1025px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  .hero-title {
    font-size: 4rem !important;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Extra Large Desktop */
@media (min-width: 1441px) {
  .container {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 4.5rem !important;
  }

  .hero-button {
    padding: 1.25rem 3rem !important;
    font-size: 1rem !important;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    height: 100vh;
  }

  .hero-athletes {
    flex-direction: row;
  }

  .athlete-card {
    height: 100%;
    width: 33.333%;
  }

  .hero-title {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }

  .hero-button {
    padding: 0.75rem 1.5rem !important;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .athlete-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .bubble {
    animation: none;
  }

  .athlete-image {
    transition: none;
  }

  .hero-button {
    transition: none;
  }

  .product-card {
    transition: none;
  }
}

/* Print Styles */
@media print {

  .bubble-background,
  .hero-athletes,
  header,
  footer {
    display: none !important;
  }

  .hero-content {
    color: black !important;
    background: white !important;
  }

  .product-grid {
    background: white !important;
    color: black !important;
  }
}

/* Mobile Menu Fixes */
@media (max-width: 768px) {
  header {
    position: relative;
  }

  header nav {
    display: none !important;
  }

  header nav.mobile-nav-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem !important;
    z-index: 1000 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }

  header nav.mobile-nav-open a {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: block !important;
    text-align: center !important;
    margin: 0 !important;
  }

  header nav.mobile-nav-open a:last-child {
    border-bottom: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
    background: none !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
  }

  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .mobile-menu-btn svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }
}

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

  header nav {
    display: flex !important;
    position: static !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    flex-direction: row !important;
  }

  header nav a {
    padding: 0.5rem 0 !important;
    border: none !important;
    display: inline-block !important;
    text-align: left !important;
    margin: 0 1.25rem !important;
  }
}

/* Mobile Login Button in Menu */
@media (max-width: 768px) {
  .mobile-login-btn {
    background: #3b82f6 !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.875rem !important;
    margin-top: 1rem !important;
    padding: 0.75rem 1.5rem !important;
    width: 100% !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
  }

  .mobile-login-btn:hover {
    background: #2563eb !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
  }

  /* Hide original login button on mobile */
  .login-button {
    display: none !important;
  }
}

/* Ensure login button shows on desktop */
@media (min-width: 769px) {
  .login-button {
    display: inline-block !important;
  }

  .mobile-login-btn {
    display: none !important;
  }
}

/* Mobile Menu Override Fix */
@media (max-width: 768px) {

  /* Override Tailwind's hidden class for mobile menu */
  header nav.hidden.mobile-nav-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem !important;
    z-index: 1000 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }

  header nav.hidden.mobile-nav-open a {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: block !important;
    text-align: center !important;
    margin: 0 !important;
  }

  header nav.hidden.mobile-nav-open a:last-child {
    border-bottom: none !important;
  }
}

/* Ensure desktop nav works properly */
@media (min-width: 769px) {
  header nav.hidden {
    display: flex !important;
  }
}

/* Mobile Login Button - Consistent Size */
@media (max-width: 768px) {
  .mobile-login-btn {
    background: #3b82f6 !important;
    color: white !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
    padding: 0.75rem 0 !important;
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
    display: block !important;
  }

  .mobile-login-btn:hover {
    background: #2563eb !important;
    color: white !important;
  }

  .mobile-login-btn:last-child {
    border-bottom: none !important;
  }
}
