.artwise-mt-footer-section {
  background-color: #ffffff00; /* Outer background */
  padding: 80px 20px;
  font-family: 'poppins', sans-serif; 
}

.artwise-mt-footer-container {
  background-color: #000;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 40px; /* Rounded card style */
  padding: 60px 50px;
}

.artwise-mt-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.artwise-mt-footer-col {
  display: flex;
  flex-direction: column;
}

/* Heading Styling */
.artwise-mt-footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.artwise-mt-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: #fff;
}

/* Links Styling */
.artwise-mt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.artwise-mt-footer-links li {
  margin-bottom: 12px;
}

.artwise-mt-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.artwise-mt-footer-links a:hover {
  opacity: 1;
}

/* Brand Info Styling */
.artwise-mt-footer-logo-box {
  margin-bottom: 20px;
}

.artwise-mt-brand-text {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

.artwise-mt-short-hr {
  width: 60px;
  border: none;
  border-top: 2px solid #fff;
  margin: 6px 0;
}

/* Bottom Bar */
.artwise-mt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  margin-bottom: 30px;
}

.artwise-mt-social-icons {
  display: flex;
  gap: 15px;
}

.artwise-mt-social-icons i {
  color: #fff;
  font-size: 1.2rem;
}
.artwise-mt-footer-logo{
 height: 70px;
 border-radius: 50%;

}

.artwise-mt-payment-methods img {
  height: 15px;
  filter: grayscale(1) invert(1); /* Matches the screenshot logos */
}

.artwise-mt-copyright {
  display: flex;
    justify-content: center;
    gap: 5px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
   color: #dedcdc;
}
.artwise-home-link{
  color: #dedcdc;
  text-decoration: underline;
  

}
.footer-icon-artwise {
  width: 24px;
  height: 24px;
}
/* .footer-icon-artwise:hover {
  filter: brightness(0) invert(1);
} */
.copyright-img-mt{
  width:16px;
  height:16px;
}

.artwise-tm-qr-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0px;
    width: fit-content;
    text-align: center;
    transition: transform 0.3s ease;
}

.artwise-tm-qr-code {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    padding: 8px;
    /* Isse white background black ho jayega aur black QR white */
    filter: invert(1);
    
    /* Agar image thodi dhundli dikhe to ye add karein (optional) */
    image-rendering: pixelated;
}

.artwise-tm-qr-instruction {
    font-family: 'poppins', sans-serif; 
    font-size: 14px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
}

/* --- Responsive Media Queries --- */

/* Tablet (max-768px) */
@media screen and (max-width: 768px) {
  .artwise-mt-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .artwise-mt-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Mobile (max-425px) */
@media screen and (max-width: 425px) {
  .artwise-mt-footer-grid {
    grid-template-columns: 1fr;
  }
  .artwise-mt-footer-container {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .artwise-mt-footer-section{
    padding:  40px 20px;
  }
}


/* Tablet (Max-width: 768px) */
@media screen and (max-width: 768px) {
    .artwise-tm-qr-code-box {
        padding: 0px;
    }
    .artwise-tm-qr-code {
        width: 100px; /* Thoda chota size tablet ke liye */
        height: 100px;
    }
}

/* Mobile (Max-width: 425px) */
@media screen and (max-width: 425px) {
    .artwise-tm-qr-code-box {
        max-width: 160px; /* Phir bhi ek limit rakhi hai */
        padding: 0px;
        gap: 10px;
    }
    .artwise-mt-footer-heading::after{
      width: 100px;
    }

    .artwise-tm-qr-code {
        width: 100px;
        height: 100px;
    }

    .artwise-tm-qr-instruction {
        font-size: 12px; /* Text chota kiya taaki wrap na ho awkwardly */
    }
}

