/* Modern Tech Login Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Body and Background Setup */
body.body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.section.cc-store-home-wrap {
  position: relative;
  min-height: calc(100vh - 80px);
  background: url(../images/login-back.png) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Overlay for better contrast */
.section.cc-store-home-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.85) 0%, rgba(20, 40, 80, 0.75) 50%, rgba(10, 15, 30, 0.85) 100%);
  z-index: 1;
}

.log {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.table {
  width: 100%;
}

.dashboard-content {
  width: 100%;
}

/* Premium Form Container */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 440px;
  width: 100%;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7, #ec4899);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.form::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 8px;
}

/* Title Styling */
.title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  margin: 0 0 8px 0;
  text-align: center;
  position: relative;
  padding-left: 0;
  min-height: 2rem;
}

.title::before,
.title::after {
  display: none;
}

.message {
  color: rgba(148, 163, 184, 0.9);
  font-size: 14px;
  text-align: center;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Form Labels and Inputs */
.form label {
  position: relative;
  display: block;
  margin-bottom: 0;
}

.form label .inputlog {
  width: 100%;
  padding: 18px 20px;
  outline: none;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.6);
  color: #f1f5f9;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.form label .inputlog::placeholder {
  color: transparent;
}

.form label .inputlog:focus {
  border-color: #6366f1;
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 
    0 0 0 4px rgba(99, 102, 241, 0.15),
    0 8px 24px -8px rgba(99, 102, 241, 0.3);
}

.form label .inputlog:valid:not(:placeholder-shown) {
  border-color: rgba(34, 197, 94, 0.5);
}

.form label .inputlog + span {
  position: absolute;
  left: 20px;
  top: 18px;
  color: rgba(148, 163, 184, 0.8);
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  padding: 0;
}

.form label .inputlog:focus + span,
.form label .inputlog:not(:placeholder-shown) + span {
  top: -9px;
  left: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  background: linear-gradient(180deg, rgba(15, 23, 42, 1) 50%, rgba(30, 41, 59, 1) 50%);
  padding: 0 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form label .inputlog:valid:not(:placeholder-shown) + span {
  color: #4ade80;
}

/* Autofill styles - when browser fills in saved credentials */
.form label .inputlog:-webkit-autofill,
.form label .inputlog:-webkit-autofill:hover,
.form label .inputlog:-webkit-autofill:focus {
  -webkit-text-fill-color: #f1f5f9;
  -webkit-box-shadow: 0 0 0 1000px rgba(30, 41, 59, 0.9) inset !important;
  box-shadow: 0 0 0 1000px rgba(30, 41, 59, 0.9) inset !important;
  border-color: rgba(99, 102, 241, 0.4);
  transition: background-color 5000s ease-in-out 0s;
}

.form label .inputlog:-webkit-autofill + span {
  top: -9px;
  left: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  background: linear-gradient(180deg, rgba(15, 23, 42, 1) 50%, rgba(30, 41, 59, 1) 50%);
  padding: 0 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Submit Button */
.submit {
  border: none;
  outline: none;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  background-size: 200% 200%;
  padding: 18px 32px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(99, 102, 241, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.submit:hover {
  background-position: 100% 100%;
  box-shadow: 
    0 8px 25px rgba(99, 102, 241, 0.5),
    0 4px 10px rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}

.submit:hover::before {
  left: 100%;
}

.submit:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Signin Links */
.signin {
  text-align: center;
  color: rgba(148, 163, 184, 0.9);
  font-size: 14px;
  margin: 6px 0;
  font-weight: 400;
}

.signin a {
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  position: relative;
}

.signin a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.signin a:hover {
  color: #c4b5fd;
}

.signin a:hover::after {
  width: 100%;
}

/* Login Container (SSO Buttons) */
.login-container {
  text-align: center;
  padding: 20px 0 8px;
  margin-top: 8px;
  position: relative;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent);
}

.login-container p {
  color: rgba(148, 163, 184, 0.7);
  margin: 0 0 16px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  margin: 8px 0;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(30, 41, 59, 0.5);
  color: #e2e8f0;
}

.login-button img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.login-button.google {
  background: rgba(30, 41, 59, 0.5);
  color: #e2e8f0;
}

.login-button.google:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(99, 102, 241, 0.3);
}

.login-button.microsoft {
  background: rgba(30, 41, 59, 0.5);
  color: #e2e8f0;
}

.login-button.microsoft:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(99, 102, 241, 0.3);
}

/* Error Message */
.error-message {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 10px 30px rgba(239, 68, 68, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.2px;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .form {
    padding: 32px 24px;
    max-width: 100%;
  }
  
  .title {
    font-size: 28px;
  }
  
  .section.cc-store-home-wrap {
    padding: 20px 16px;
  }
}
/* Modern Navigation Styles */
.navigation {
  position: relative;
  z-index: 100;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navigation-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  max-width: 1920px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.logo-image {
  transition: filter 0.3s ease;
}

.logo-link:hover .logo-image {
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.menu-container {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.main-menu {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.menu-item {
  position: relative;
  margin: 0 4px;
}

.menu-item a {
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  display: block;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.menu-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  transition: left 0.5s;
}

.menu-item a:hover {
  color: #ffffff;
  background: rgba(99, 102, 241, 0.15);
  transform: translateY(-2px);
}

.menu-item a:hover::before {
  left: 100%;
}

.menu-item.has-submenu > a {
  padding-right: 32px;
}

.menu-item.has-submenu > a:after {
  content: '▼';
  font-size: 10px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  color: rgba(165, 180, 252, 0.8);
}

.menu-item.has-submenu:hover > a:after {
  transform: translateY(-50%) rotate(180deg);
  color: #a5b4fc;
}

.submenu {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.99) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  display: none;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(99, 102, 241, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.menu-item:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.submenu li {
  margin: 0;
}

.submenu li a {
  padding: 12px 20px;
  font-size: 14px;
  color: rgba(226, 232, 240, 0.8);
  border-radius: 0;
  display: block;
  position: relative;
  padding-left: 32px;
}

.submenu li a::before {
  content: '→';
  position: absolute;
  left: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #a5b4fc;
}

.submenu li a:hover {
  background: rgba(99, 102, 241, 0.15);
  color: #ffffff;
  padding-left: 40px;
}

.submenu li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.menu-item .button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

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

.menu-item .button:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.menu-item .button:hover::before {
  left: 100%;
}


/* Modern Burger Menu Styles */
.burger-menu {
  display: none;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  cursor: pointer;
  padding: 12px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.burger-menu:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: linear-gradient(90deg, #a5b4fc, #c4b5fd);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.burger-menu.active {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: linear-gradient(90deg, #f472b6, #fb923c);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: linear-gradient(90deg, #f472b6, #fb923c);
}

/* Modern Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Modern Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 420px;
  height: 100%;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.99) 0%, rgba(15, 23, 42, 0.99) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-left: 1px solid rgba(99, 102, 241, 0.2);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.4),
             inset 1px 0 0 rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 24px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.mobile-menu-close {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: rgba(226, 232, 240, 0.9);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(244, 114, 182, 0.2);
  border-color: rgba(244, 114, 182, 0.4);
  color: #ffffff;
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 24px;
}

.mobile-menu-item {
  margin-bottom: 8px;
}

.mobile-menu-item a {
  display: block;
  padding: 16px 20px;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.mobile-menu-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  transition: left 0.5s;
}

.mobile-menu-item a:hover {
  color: #ffffff;
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateX(8px);
}

.mobile-menu-item a:hover::before {
  left: 100%;
}

.mobile-submenu {
  margin-left: 24px;
  margin-top: 8px;
  padding-left: 16px;
  border-left: 2px solid rgba(99, 102, 241, 0.3);
  display: none;
  animation: slideDown 0.3s ease;
}

.mobile-submenu a {
  font-size: 14px;
  color: rgba(226, 232, 240, 0.7);
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
  padding-left: 32px;
}

.mobile-submenu a::before {
  content: '→';
  position: absolute;
  left: 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #a5b4fc;
}

.mobile-submenu a:hover {
  color: #ffffff;
  background: rgba(99, 102, 241, 0.1);
  padding-left: 40px;
}

.mobile-submenu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-item.has-submenu > a {
  position: relative;
  padding-right: 48px;
}

.mobile-menu-item.has-submenu > a:after {
  content: '▼';
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(165, 180, 252, 0.8);
}

.mobile-menu-item.has-submenu.expanded > a:after {
  transform: translateY(-50%) rotate(180deg);
  color: #a5b4fc;
}

.mobile-menu-item.has-submenu.expanded .mobile-submenu {
  display: block;
}

.mobile-menu .button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  display: block;
  text-transform: none;
  margin-top: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

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

.mobile-menu .button:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.mobile-menu .button:hover::before {
  left: 100%;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1919px) {
  .burger-menu {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  .navigation-wrap {
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }
  
  .navigation-wrap > div:last-child {
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    max-width: 160px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .navigation-wrap {
    padding: 12px 16px;
  }
  
  .logo-image {
    max-width: 140px;
  }
  
  .burger-menu {
    width: 40px;
    height: 40px;
    padding: 10px;
    margin-right: 0;
  }
  
  .mobile-menu {
    width: 90%;
  }
}