/* Shared Sidebar Styles */
.side-drawer-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15), -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 20000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding-top: 0;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
}

.side-drawer-nav.open {
  right: 0;
}

/* Header section with logo and close button */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.drawer-logo {
  height: 36px;
  width: auto;
}

.side-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.side-drawer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Navigation container */
.drawer-nav {
  padding: 16px 0;
  margin: 0;
}

/* Individual drawer items */
.drawer-item {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 12px 24px !important;
  margin: 4px 12px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  border-bottom: none !important;
  position: relative !important;
}

.drawer-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s ease;
}

.drawer-item:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  transform: translateX(4px) !important;
}

.drawer-item:hover::before {
  background: #fff;
}

.drawer-item i {
  font-size: 16px;
  opacity: 0.9;
  width: 20px;
  text-align: center;
}

/* Featured item (Partner With Us) */
.drawer-item.featured {
  background: rgba(255, 255, 255, 0.1) !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.drawer-item.featured:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.side-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 19999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.side-drawer-overlay.open {
  display: block;
  opacity: 1;
}

@media (min-width: 768px) {
  .side-drawer-nav,
  .side-drawer-overlay {
    display: none !important;
  }
}

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.container-fluid {
  max-width: 100vw !important;
  overflow-x: hidden !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.row {
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
