/** Shopify CDN: Minification failed

Line 11:0 Unexpected "}"
Line 71:1 Expected "}" to go with "{"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  /* ✅ Mobile devices (max-width 767px) */
@media screen and (max-width: 767px) {
  .card {
    border-radius: 20px;
    padding: 15px;
    font-size: 14px;
  }
}

/* ✅ Tablets (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .card {
    border-radius: 25px;
    padding: 20px;
    font-size: 15px;
  }
}

/* ✅ Desktop (above 1024px) - optional */
@media screen and (min-width: 1025px) {
  .card {
    border-radius: 30p
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  /* ✅ Sirf Mobile Devices (max-width 767px) */
@media screen and (max-width: 767px) {
  .card {
    border-radius: 20px;
    padding: 12px;
    font-size: 14px;
  }

  /* Example: Button full width on mobile */
  .button, .btn {
    width: 100%;
    font-size: 14px;
  }

  /* Example: Product image responsive */
  .product img {
    width: 100%;
    height: auto;
  }
}
}