.elementor-39 .elementor-element.elementor-element-8361ed5{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-50c7393 */.ast-scroll-top-icon{
    display: none !important;
}
.premium-footer {
  width: 100%;
  background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Decoration */
.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(107, 194, 245, 0.03), transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px 30px;
  position: relative;
  z-index: 2;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Brand Column */
.brand-col {
  max-width: 280px;
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF, #6BC2F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  font-size: 32px;
  animation: rotateIcon 20s linear infinite;
  display: inline-block;
  background: linear-gradient(135deg, #FFFFFF, #6BC2F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes rotateIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.logo-img {
  height: 80px !important;   
  width: auto;
  display: block;
}
.brand-headline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

/* Social Links - Only 3 icons */
.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 18px;
}

.social-icon:hover {
  background: #6BC2F5;
  color: #0A0A0A;
  transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #6BC2F5;
}

/* Footer Menus */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-menu li a i {
  font-size: 12px;
  color: #6BC2F5;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-menu li a:hover {
  color: #6BC2F5;
  transform: translateX(5px);
}

.footer-menu li a:hover i {
  opacity: 1;
  transform: translateX(3px);
}

/* Contact Info */
.contact-info {
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.contact-item i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 194, 245, 0.1);
  border-radius: 50%;
  color: #6BC2F5;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  background: #6BC2F5;
  color: #0A0A0A;
  transform: scale(1.1);
}

.contact-item span {
  line-height: 1.4;
}

/* Payment Row - Full Width at Bottom of Columns */
.payment-row {
  margin: 0 0 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.payment-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-card img {
  height: 20px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-3px);
}

.payment-card:hover img {
  transform: scale(1.05);
}

/* Individual card brand hover effects */
.payment-card.visa:hover img { filter: drop-shadow(0 0 5px #1A1F71); }
.payment-card.mastercard:hover img { filter: drop-shadow(0 0 5px #EB001B); }
.payment-card.googlepay:hover img { filter: drop-shadow(0 0 5px #4285F4); }
.payment-card.klarna:hover img { filter: drop-shadow(0 0 5px #FFB3C7); }
.payment-card.applepay:hover img { filter: drop-shadow(0 0 5px #000); }
.payment-card.paypal:hover img { filter: drop-shadow(0 0 5px #003087); }
.payment-card.stripe:hover img { filter: drop-shadow(0 0 5px #635BFF); }
.payment-card.shoppay:hover img { filter: drop-shadow(0 0 5px #5A31F4); }

/* Footer Bottom - No extra links */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  text-align: center;
}

.copyright p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.heart {
  color: #6BC2F5;
  animation: heartPulse 2s ease infinite;
  display: inline-block;
  margin: 0 4px;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .brand-col {
    max-width: 100%;
  }
  
  .footer-container {
    padding: 50px 30px 30px;
  }
  
  .payment-methods {
    gap: 20px;
  }
  
  .payment-card img {
    height: 24px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-container {
    padding: 40px 20px 30px;
  }
  
  .payment-methods {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .payment-card img {
    height: 22px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 40px 16px 30px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  
  .footer-title {
    font-size: 15px;
  }
  
  .payment-methods {
    gap: 12px;
  }
  
  .payment-card img {
    height: 18px;
  }
}/* End custom CSS */