/** Shopify CDN: Minification failed

Line 32:0 Unexpected "}"

**/
/* Mobile styles for collection-box elements */
@media (max-width: 768px) {
  /* Add white padding around collections container */
  .collections-container {
    padding-left: 4px !important;
    padding-right: 4px !important;
    padding-top: 2px !important;     /* You can change this value independently */
    padding-bottom: 2px !important;  /* You can change this value independently */
    background-color: white !important;
  }
}
  
  /* Style each collection box */
  .collection-box {
    margin: 0 !important; /* Reset any margins */
    width: calc(100% - 0px) !important; /* Full width minus padding */
    box-sizing: border-box !important;
    border: 2px solid white !important;
    overflow: hidden !important;
    background-color: white !important;
  }
  
  /* Remove margin on the last collection box to maintain proper spacing */
  .collection-box:last-child {
    margin-bottom: 0 !important;
  }
} 