/* Reset and base styles */

/* Subtle gradient divider under the main header */
.main-header {
  position: relative;
}

.main-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.16) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #ffffff;
}

/* Header styles */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #ffffff 0%, #e5e7eb 50%, #ffffff 100%)
    1;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1572px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  min-height: 88px;
}

/* Logo section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #8b5cf6;
  letter-spacing: -0.5px;
}

/* Navigation links */
.navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
  margin: 0 48px;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s ease;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 8px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.nav-link:hover {
  color: #6b7280;
}

.nav-link.active {
  color: inherit;
  background-color: transparent;
  font-weight: inherit;
}

/* Special styling for "Crea tu Evento" button */
.btn-create-event {
  background: linear-gradient(135deg, #3D15CE 0%, #9046EA 100%) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 10px 28px !important;
  font-weight: 600 !important;
  border: none !important;
  margin-right: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Remove bold/extra weight for header content on homepage */
body.home .nav-link,
body.home .btn,
body.home .btn-create-event,
body.home .btn-login,
body.home .btn-signup {
  font-weight: 400 !important;
}

body.home .btn-create-event,
body.home .btn-signup {
  /* keep gradient but reduce emphasis slightly */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.btn-create-event:hover {
  background: linear-gradient(135deg, #2D0F9E 0%, #7A3DD8 100%) !important;
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Action buttons */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  transform: scale(1.05);
}

.btn-signup {
  background: linear-gradient(135deg, #3D15CE 0%, #9046EA 100%);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 600;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-signup:hover {
  background: linear-gradient(135deg, #2D0F9E 0%, #7A3DD8 100%);
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 1024px) {
  .navigation {
    gap: 24px;
    margin: 0 24px;
  }

  .nav-link {
    font-size: 15px;
  }
}

/* Desktop logo scale to match larger header */
@media (min-width: 1024px) {
  .logo-icon svg {
    width: 176px;
    height: 54px;
  }
}

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

  .navigation {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 0;
    gap: 0;
    z-index: 50;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navigation.active {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    padding: 20px 16px;
    gap: 16px;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 16px;
    text-align: left;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navigation.active .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .navigation.active .nav-link:nth-child(1) {
    transition-delay: 0.1s;
  }

  .navigation.active .nav-link:nth-child(2) {
    transition-delay: 0.15s;
  }

  .navigation.active .nav-link:nth-child(3) {
    transition-delay: 0.2s;
  }

  .navigation.active .nav-link:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(61, 21, 206, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover {
    color: #6b7280;
    transform: translateX(4px);
  }

  .nav-link:active {
    transform: translateX(4px) scale(0.98);
  }

  .action-buttons {
    gap: 8px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .mobile-menu-btn {
    display: block !important;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: #374151;
    order: 2;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(61, 21, 206, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }

  .mobile-menu-btn:hover::before {
    width: 100%;
    height: 100%;
  }

  .mobile-menu-btn:hover {
    color: #3d15ce;
    transform: scale(1.05);
  }

  .mobile-menu-btn:active {
    transform: scale(0.95);
  }

  .mobile-menu-btn.active {
    color: #3d15ce;
    transform: rotate(90deg);
  }
}

/* Align header content with checkout container paddings */
@media (min-width: 768px) {
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding-left: 3.75rem; /* 60px to match checkout container */
    padding-right: 3.75rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 16px;
  }

  .action-buttons {
    gap: 6px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  .nav-link {
    font-size: 15px;
  }

  .mobile-menu-btn {
    font-size: 22px;
    padding: 6px;
  }
}

/* Additional hover effects and animations */
.btn:active {
  transform: translateY(1px);
}

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

/* Focus states for accessibility */
.btn:focus {
  outline: 2px solid #3d15ce;
  outline-offset: 2px;
}

.nav-link:focus {
  outline: none;
}

.nav-link:active {
  outline: none;
}

/* Search Section */
.search-section {
  background-color: #ffffff;
  padding: 20px 0;
}

.search-container {
  max-width: 1572px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  z-index: 1;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 48px;
  padding: 12px 16px 12px 48px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #f9fafb;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #374151;
  outline: none;
  transition: all 0.2s ease;
}

.search-input::placeholder {
  color: #9ca3af;
  font-family: "Montserrat", sans-serif;
}

.search-input:focus {
  border-color: #3d15ce;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(61, 21, 206, 0.1);
}

.search-input:hover {
  border-color: #d1d5db;
}

/* Responsive search section */
@media (max-width: 768px) {
  .search-section {
    display: none; /* Hide search bar on mobile by default */
  }
}

@media (max-width: 480px) {
  .search-input {
    height: 40px;
    font-size: 14px;
    padding: 10px 14px 10px 44px;
  }

  .search-icon {
    left: 14px;
    width: 18px;
    height: 18px;
  }
}

/* Slider Section */
.slider-section {
  background-color: #ffffff;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.slider-container {
  max-width: 1572px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.owl-stage {
  display: flex;
}

.owl-item {
  opacity: 1;
  transform: none;
  transition: all 0.4s ease;
}

.owl-item.center {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.owl-item.active {
  opacity: 1;
}

.owl-item.owl-center-item {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Owl Carousel Custom Styling */
.owl-carousel .item {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.owl-carousel .item::after {
  display: none;
  content: none;
}

.owl-carousel .item::before {
  display: none;
  content: none;
}

.owl-carousel .item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

/* Navigation arrows */
.owl-nav {
  display: none !important;
}

.owl-nav button { display: none !important; }

.owl-nav button:hover { display: none !important; }

.owl-nav button:focus { outline: none !important; }

.owl-nav .owl-prev { display: none !important; }

.owl-nav .owl-next { display: none !important; }

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

  .owl-carousel .item {
    height: auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .owl-carousel .item img {
    height: auto;
    max-height: 300px;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
  }

  /* Hide navigation arrows on mobile */
  .owl-nav {
    display: none !important;
  }

  /* Show only 1 item per slide on mobile with proper centering and gap */
  .owl-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 7.5px !important;
  }
  
  .owl-stage {
    display: flex !important;
    align-items: center !important;
  }
  
  /* Remove box shadow on mobile */
  .owl-carousel .item {
    box-shadow: none !important;
  }
}

@media (max-width: 480px) {
  .owl-carousel .item {
    height: auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .owl-carousel .item img {
    height: auto;
    max-height: 240px;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
  }

  /* Hide navigation arrows on mobile */
  .owl-nav {
    display: none !important;
  }

  /* Show only 1 item per slide on mobile with proper centering and gap */
  .owl-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 6px !important;
  }
  
  .owl-stage {
    display: flex !important;
    align-items: center !important;
  }
  
  /* Remove box shadow on mobile */
  .owl-carousel .item {
    box-shadow: none !important;
  }
}

/* Align homepage content containers with footer paddings */
@media (min-width: 768px) {
  .search-container,
  .slider-container,
  .events-container,
  .banner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .search-container,
  .slider-container,
  .events-container,
  .banner-container {
    padding-left: 3.75rem; /* align with header logo start */
    padding-right: 3.75rem;
  }
}

/* Events Section */
.events-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.events-container {
  max-width: 1572px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Ensure events container matches slider alignment (override later in file) */
@media (min-width: 768px) {
  .events-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .events-container {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.events-title-section {
  flex: 1;
}

.events-title {
  font-size: 32px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.2;
}

.events-subtitle {
  font-size: 14px;
  color: #6b7280;
  font-weight: 300;
  margin: 0;
}


.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}

.event-card {
  cursor: pointer;
  flex: 0 0 calc(20% - 19.2px); /* 5 per row accounting for 24px gaps */
  min-width: 0;
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

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

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

.event-content {
  margin-top: 10px;
}

.event-title {
  font-size: 16px;
  font-weight: 400;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-venue {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 300;
}

.event-datetime {
  font-size: 14px;
  color: #3d15ce;
  font-weight: 400;
  margin-bottom: 6px;
}

.event-price {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

/* Responsive Events Section */
@media (max-width: 768px) {
  .events-section {
    padding: 40px 0;
  }

  .events-container {
    padding: 0 16px;
  }

  .events-header {
    margin-bottom: 15px;
  }

  .events-title {
    font-size: 24px;
  }

  .events-subtitle {
    font-size: 14px;
  }

  .event-card {
    flex: 0 0 calc(33.33% - 16px);
  }

  .events-list {
    gap: 16px;
  }

  .event-image {
    height: 200px;
  }

  .event-title {
    font-size: 16px;
  }

  .event-price {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .events-section {
    padding: 30px 0;
  }

  .events-title {
    font-size: 20px;
  }

  .event-card {
    flex: 0 0 calc(50% - 6px);
  }

  .events-list {
    gap: 12px;
  }

  .event-image {
    height: 180px;
  }

  .event-title {
    font-size: 15px;
  }

  .event-venue,
  .event-datetime {
    font-size: 13px;
  }

  .event-price {
    font-size: 16px;
  }
}

/* Smooth transitions for all interactive elements */
.logo-section,
.nav-link,
.btn {
  transition: all 0.2s ease;
}

.banner {
  width: 100%;
  height: 180px;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-container {
  max-width: 1572px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Footer Section */
.footer {
  background-color: #f8f9fa;
  padding: 40px 0 30px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1572px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding-left: 3.75rem; /* 60px to match checkout container */
    padding-right: 3.75rem;
  }
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #e5e7eb;
  border-radius: 6px;
}

.footer-copyright,
.footeropyright {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.language-selector:hover {
  opacity: 0.8;
}

.language-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.language-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-link {
  font-size: 14px;
  color: #6b7280;
  text-decoration: underline;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #374151;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin: 24px 0;
}

.footer-middle {
  margin: 24px 0;
}

.footer-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 400;
  max-width: 800px;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.footer-address p {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
  margin: 0;
}

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

.social-icon {
  width: 32px;
  height: 32px;
  background-color: #d1d5db;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.social-icon:hover {
  background-color: #9ca3af;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 20px 0;
    margin-top: 40px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-social {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 24px 0 16px 0;
  }

  .footer-nav {
    gap: 12px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-address p {
    font-size: 13px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }
}

/* Payment Methods - Footer */
.footer-payment .payment-methods {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-payment .payment-methods img {
    transition: all 0.2s ease;
    height: auto;
    max-height: 32px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    opacity: 0.8;
}

.footer-payment .payment-methods img:hover {
    opacity: 1;
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    gap: 3px;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: #e5e7eb;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: #000;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.search-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    color: #000;
}

.search-btn:hover {
    background: #e5e7eb;
}

.desktop-nav {
    display: flex;
}

.desktop-actions {
    display: flex;
}

/* Ensure desktop navigation is always visible on desktop */
@media (min-width: 769px) {
  .desktop-nav,
  .desktop-actions {
    display: flex !important;
  }
  .navigation {
    position: static;
    opacity: 1;
    transform: none;
    max-height: none;
    padding: 0;
    gap: 32px;
  }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 999;
    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-nav.active {
    transform: translateX(0);
}

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

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    color: #000;
}

.mobile-nav-close:hover {
    background: #e5e7eb;
}

.mobile-nav-links {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-roobert);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.mobile-nav-link:hover {
    color: #6b7280;
}

.mobile-nav-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 1.5rem;
}

.mobile-nav-actions {
    padding: 1.5rem;
}

.mobile-login-btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn,
    .search-btn {
        display: flex;
    }
    
    .desktop-nav,
    .desktop-actions {
        display: none;
    }
    
    .header-container {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .logo-section {
        position: static;
        transform: none;
        order: 2;
    }
    
    .mobile-menu-btn {
        order: 1;
    }
    
    .search-btn {
        order: 3;
        margin-left: auto;
    }
}
