/** Shopify CDN: Minification failed

Line 69:1 Expected "}" to go with "{"

**/
/* footer-accordion.css */

/* Mobile-only styles */
@media (max-width: 749px) {
  /* Yeh trigger ke base styles hain, inhein waise hi rehne dein */
  .footer-accordion__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 110%;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0rem 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    position: relative;
    border-bottom: 0px solid var(--color-border, rgba(0,0,0,0.1));
  }

  /* Is summary tag se pehle ki default arrow/marker hata dein */
  .footer-accordion__trigger {
    list-style: none; /* For Safari */
  }

  .footer-accordion__trigger::-webkit-details-marker {
    display: none; /* For Chrome/Edge */
  }
  
  .footer-accordion--first {
     border-top: 0px solid var(--color-border, rgba(0,0,0,0.1));
  }
  
  /* --- YAHAN BADLAV KIYA GAYA HAI --- */
  /* Plus icon ab bilkul right mein align ho jayega */
  .footer-accordion__trigger::before,
  .footer-accordion__trigger::after {
    content: '';
    position: absolute;
    right: 0rem; /* Pehle yeh 0.5rem tha, ab 0 kar diya hai */
    top: 50%;
    width: 0.9rem;
    height: 0.9px;
    background-color: currentColor;
    transition: transform 0.25s ease-out;
  }
  
  .footer-accordion__trigger::after {
    transform: translateY(-50%) rotate(90deg);
  }
  
  details[open] > .footer-accordion__trigger::after {
    transform: translateY(-50%) rotate(0deg); 
  }
  
  .footer-accordion__content {
    padding-top: 1.5rem;

  .footer-accordion__content {
    padding-bottom: 1.5rem;
  }
}