/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 1px;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, 
      rgba(4, 4, 4, 0.98) 0%, 
      rgba(26, 26, 26, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  border-top: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
  box-shadow: 
      -5px -5px 30px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(198, 102, 12, 0.3);
  z-index: 9999;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUpCookie 0.5s ease-out forwards;
  box-sizing: border-box;
}

@keyframes slideUpCookie {
  from {
      transform: translateY(100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 15px;
}

.cookie-consent-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, 
      var(--accent-color) 0%, 
      var(--accent-secondary) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(198, 102, 12, 0.4);
  flex-shrink: 0;
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-title {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-consent-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, 
      var(--accent-color) 0%, 
      var(--accent-secondary) 100%
  );
  border-radius: 2px;
}

.cookie-consent-message {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
}

.cookie-consent-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(198, 102, 12, 0.1);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(198, 102, 12, 0.3);
  flex: 1;
  justify-content: center;
  min-width: 120px;
}

.cookie-consent-link:hover {
  background: rgba(198, 102, 12, 0.2);
  border-color: var(--accent-color);
  color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 102, 12, 0.3);
}

.cookie-consent-link i {
  font-size: 14px;
}

.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--accent-font);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-consent-accept {
  background: linear-gradient(135deg, 
      var(--accent-color) 0%, 
      var(--accent-secondary) 100%
  );
  color: var(--white-color);
}

.cookie-consent-accept:hover {
  background: linear-gradient(135deg, 
      var(--accent-secondary) 0%, 
      var(--accent-color) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(198, 102, 12, 0.5);
}

.cookie-consent-accept:active {
  transform: translateY(0);
}

.cookie-consent-decline {
  background: rgba(111, 120, 129, 0.2);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-decline:hover {
  background: rgba(111, 120, 129, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-consent-decline:active {
  transform: translateY(0);
}

.cookie-consent-btn i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cookie-consent-banner {
      max-width: 450px;
  }
}

@media (max-width: 768px) {
  .cookie-consent-banner {
      max-width: 100%;
      border-right: none;
      border-left: 3px solid var(--accent-color);
      padding: 18px 15px;
      left: 0;
      right: 0;
  }

  .cookie-consent-content {
      gap: 12px;
  }

  .cookie-consent-icon {
      width: 45px;
      height: 45px;
      font-size: 22px;
  }

  .cookie-consent-title {
      font-size: 18px;
  }

  .cookie-consent-message {
      font-size: 13px;
      line-height: 1.5;
  }

  .cookie-consent-actions {
      flex-direction: column;
      gap: 8px;
  }

  .cookie-consent-link,
  .cookie-consent-btn {
      width: 100%;
      min-width: 100%;
      flex: 1;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
      padding: 15px 12px;
      border-left: 2px solid var(--accent-color);
      border-top: 2px solid var(--accent-color);
  }

  .cookie-consent-content {
      gap: 10px;
  }

  .cookie-consent-icon {
      width: 40px;
      height: 40px;
      font-size: 20px;
  }

  .cookie-consent-title {
      font-size: 16px;
      margin-bottom: 6px;
  }

  .cookie-consent-title::before {
      height: 16px;
  }

  .cookie-consent-message {
      font-size: 12px;
      line-height: 1.5;
  }

  .cookie-consent-actions {
      gap: 6px;
  }

  .cookie-consent-link {
      padding: 8px 14px;
      font-size: 12px;
  }

  .cookie-consent-btn {
      padding: 10px 16px;
      font-size: 13px;
  }

  .cookie-consent-link i,
  .cookie-consent-btn i {
      font-size: 12px;
  }
}

@media (max-width: 360px) {
  .cookie-consent-banner {
      padding: 12px 10px;
  }

  .cookie-consent-icon {
      width: 35px;
      height: 35px;
      font-size: 18px;
  }

  .cookie-consent-title {
      font-size: 15px;
  }

  .cookie-consent-message {
      font-size: 11px;
  }

  .cookie-consent-link,
  .cookie-consent-btn {
      padding: 8px 12px;
      font-size: 12px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .cookie-consent-banner {
      max-width: 100%;
      padding: 12px 15px;
  }

  .cookie-consent-content {
      flex-direction: row;
      align-items: center;
      gap: 12px;
  }

  .cookie-consent-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
  }

  .cookie-consent-text {
      flex: 1;
      min-width: 0;
  }

  .cookie-consent-title {
      font-size: 16px;
      margin-bottom: 4px;
  }

  .cookie-consent-message {
      font-size: 12px;
      margin: 0;
  }

  .cookie-consent-actions {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 0;
      flex-shrink: 0;
  }

  .cookie-consent-link {
      min-width: auto;
      flex: 0 0 auto;
      padding: 8px 12px;
      font-size: 11px;
  }

  .cookie-consent-btn {
      min-width: auto;
      flex: 0 0 auto;
      padding: 8px 14px;
      font-size: 12px;
  }
}

/* Animation for hiding */
.cookie-consent-banner.hide {
  animation: slideDownCookie 0.4s ease-in forwards;
}

@keyframes slideDownCookie {
  from {
      transform: translateY(0);
      opacity: 1;
  }
  to {
      transform: translateY(100%);
      opacity: 0;
  }
}

