/* Navigation horizontal styling for main menu */
.wp-block-navigation__container.is-responsive.wp-block-navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px; /* space between items */
  padding: 0;
  margin: 0;
  list-style: none;
}

.wp-block-navigation-item.wp-block-navigation-link {
  margin: 0;
  padding: 0;
}

.wp-block-navigation-item__content {
  font-size: 0.96rem;
  font-weight: 500;
  color: #f0f0f0e5 !important;
  text-decoration: none;
  letter-spacing: 1.5px;
  padding: 8px 0;
  transition: color 0.2s;
  border: none;
  background: none;
  display: inline-block;
}

.wp-block-navigation-item__content:hover,
.wp-block-navigation-item__content:focus {
  color: #ffd600;
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 700px) {
  .wp-block-navigation__container.is-responsive.wp-block-navigation {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================================
   HEADER STYLING - Language Dropdown & Mobile Menu
   =================================== */

/* Language dropdown styling */
.language-dropdown {
  margin-left: 20px;
}

.language-selector {
  position: relative;
}

.language-select {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 25px 8px 12px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border-radius: 0;
  min-width: 60px;
}

.language-select:focus {
  outline: none;
  border-color: #fcb900;
}

.language-select:hover {
  color: #fcb900;
  border-color: #fcb900;
}

/* Custom dropdown arrow */
.language-selector::after {
  content: '▼';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 10px;
  pointer-events: none;
}

.language-select:hover + .language-selector::after,
.language-selector:hover::after {
  color: #fcb900;
}

/* Style dropdown options */
.language-select option {
  background-color: #000;
  color: #fff;
  padding: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.language-select option:hover {
  background-color: #333;
  color: #fcb900;
}

/* Mobile menu container */
.mobile-menu-container {
  display: none;
  align-items: center;
  gap: 15px;
}

/* Mobile language dropdown */
.mobile-language {
  margin-left: 0;
}

/* Hide navigation on mobile */
@media (max-width: 767px) {
  .wp-block-navigation {
    display: none !important;
  }

  /* Hide desktop language dropdown on mobile */
  .language-dropdown:not(.mobile-language) {
    display: none;
  }

  /* Show mobile menu container */
  .mobile-menu-container {
    display: flex;
  }

  /* Hamburger menu styles */
  .hamburger-menu {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
  }

  .hamburger-btn.active .hamburger-line:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-menu li {
    margin: 20px 0;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
  }
  
  @media (max-width: 500px) {
    .mobile-menu a {
      font-size: 19px;
    }
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: #fcb900;
    outline: none !important;
    box-shadow: none !important;
  }
}

/* Hide hamburger menu and mobile language on desktop */
@media (min-width: 768px) {
  .mobile-menu-container {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Footer Newsletter Styling */
.footer-newsletter {
  margin-top: 24px;
  margin-bottom: 24px;
}

.newsletter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  padding: 12px 16px;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffd600;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-input.error {
  border-color: #C51919;
  background: rgba(197, 25, 25, 0.1);
}

.newsletter-input::placeholder {
  color: #888;
}

.newsletter-submit {
  background: #ffd600;
  border: none;
  color: #000;
  padding: 12px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter-submit:disabled:hover {
  background: #ffd600;
  transform: none;
}

/* Newsletter feedback messages */
.newsletter-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: slideIn 0.3s ease;
  transition: opacity 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-message-success {
  background-color: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}


.footer-contact-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  color: #ffed4e;
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
}

/* ===================================
   MODERN FOOTER STYLING
   =================================== */

.skynex-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  color: #f0f0f0;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.skynex-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd600, transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 50px;
  /* removed yellow border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd600;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-location {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer Links Section */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 24px 0;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: currentColor !important;
  transition: width 0.3s ease;
}

.footer-column:hover h4::after {
  width: 50px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column ul li a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
  outline: none !important;
  box-shadow: none !important;
}

.footer-column ul li a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.footer-column ul li a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #ffd600;
}

.footer-column ul li a:hover {
  color: #ffd600;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-column ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-icon {
  width: 44px;
  height: 44px;
  /* neutral background/border instead of yellow */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-icon:hover::before {
  width: 100px;
  height: 100px;
}

.social-icon:hover {
  /* neutral hover without yellow glow */
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.social-icon svg {
  position: relative;
  z-index: 1;
}

/* Ensure LinkedIn icon stays white */
.linkedin-only svg {
  fill: #fff !important;
}

/* Footer email styling */
.footer-email-wrap {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.footer-email {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  outline: none !important;
  box-shadow: none !important;
}

.footer-email:hover,
.footer-email:focus {
  color: #fff;
  text-decoration: underline;
  outline: none !important;
  box-shadow: none !important;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  position: relative;
}

.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, #ffd600 0%, transparent 50%, #ffd600 100%);
  margin-bottom: 25px;
  border-radius: 2px;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .skynex-footer {
    padding: 40px 0 0;
  }

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

  .footer-top {
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column:hover h4::after {
    width: 30px;
  }

  .footer-column ul {
    align-items: center;
  }

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

  .footer-copyright {
    font-size: 0.85rem;
  }
}

/* For screens below 767px: keep container centered but align footer text to the left */
@media (max-width: 767px) {
  .footer-container {
    /* container remains centered via max-width + margin auto */
    padding: 0 20px;
  }

  /* Left-align all text inside footer columns and brand area */
  .footer-brand {
    text-align: left;
    align-items: flex-start;
  }

  .footer-column h4,
  .footer-column ul,
  .footer-column ul li,
  .footer-location,
  .footer-tagline {
    text-align: left;
  }

  /* Ensure section underline stays left-aligned */
  .footer-column h4::after {
    left: 0;
    transform: none;
  }

  /* Make lists align to the left */
  .footer-column ul {
    align-items: flex-start;
  }

  /* Social icons align left, not centered */
  .footer-social {
    justify-content: flex-start;
  }
}

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

  .footer-top {
    gap: 30px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-location {
    font-size: 0.85rem;
  }

  .footer-column h4 {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .footer-column ul {
    gap: 12px;
  }

  .footer-column ul li a {
    font-size: 0.9rem;
  }

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

  .footer-bottom {
    padding: 25px 0;
  }
}

/* ===================================
   PRODUCTS PAGE CONTACT SECTION
   =================================== */

.products-contact-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.products-contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd600, transparent);
}

.products-contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.products-contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.products-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
}

.products-contact-subtitle {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.products-contact-form {
  background: rgba(255, 255, 255, 0.03);
  /* remove yellow border, use subtle neutral border */
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.4);
  /* neutral border instead of yellow */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 1rem;
  color: #f0f0f0;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  /* remove yellow focus border and glow */
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 32px;
  text-align: center;
}

.products-submit-btn {
  background: linear-gradient(135deg, #ffd600 0%, #ffed4e 100%);
  border: none;
  border-radius: 8px;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 700;
  color: #000 !important; /* changed to pure black as requested */
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
}
#submitBtnText span {
  color: #000 !important;
}

.products-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd600 100%);
}

.products-submit-btn:active {
  transform: translateY(0);
}

.form-notification {
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-notification.success {
  display: block;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4caf50;
  color: #4caf50;
}

.form-notification.error {
  display: block;
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid #f44336;
  color: #f44336;
}

/* Responsive Design for Products Contact */
@media (max-width: 768px) {
  .products-contact-section {
    padding: 60px 20px;
  }

  .products-contact-title {
    font-size: 2rem;
  }

  .products-contact-subtitle {
    font-size: 1rem;
  }

  .products-contact-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-submit-btn {
    width: 100%;
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  .products-contact-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .products-contact-form {
    padding: 24px 16px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .products-submit-btn {
    font-size: 0.8rem !important;
    padding: 10px 24px !important;
  }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(253, 185, 19, 0.3);
  border-radius: 50%;
  color: #FDB913;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(253, 185, 19, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px) scale(0.3);
  pointer-events: none;
  visibility: hidden;
}

.scroll-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.scroll-to-top-btn.hiding {
  animation: bounceOut 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.3);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
  70% {
    transform: translateY(5px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounceOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(10px) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.3);
  }
}

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-color: #FDB913;
  color: #ffc94d;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(253, 185, 19, 0.3);
}

.scroll-to-top-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.scroll-to-top-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  
  .scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ===================================
   YOUTUBE TOAST NOTIFICATION STYLES
   =================================== */

.skynex-toast {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(253, 185, 19, 0.3);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(253, 185, 19, 0.1);
  backdrop-filter: blur(10px);
  min-width: 320px;
  max-width: 400px;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.skynex-toast-header {
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(253, 185, 19, 0.2) !important;
  color: #FDB913 !important;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
}

.skynex-toast-header strong {
  color: #FDB913;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.skynex-toast-header .btn-close {
  filter: none !important;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  width: 1em !important;
  height: 1em !important;
  padding: 0.25em 0.25em !important;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
  border: 0 !important;
  border-radius: 0.25rem !important;
  display: inline-block !important;
  visibility: visible !important;
  cursor: pointer !important;
}

.skynex-toast-header .btn-close:hover {
  opacity: 1;
}

.skynex-toast-body {
  color: #f0f0f0;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  background: transparent;
}

#youtube-toast-container {
  position: fixed !important;
  bottom: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  padding: 20px !important;
  pointer-events: none;
}

#youtube-toast-container .toast {
  pointer-events: auto;
}

@media (max-width: 480px) {
  .skynex-toast {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 20px 20px 20px;
  }
  
  .skynex-toast-body {
    font-size: 13px;
  }
}
