/* only essential adjustments – fully responsive, no unwanted extras */
    .asada {
      padding: 30px 20px;
      background-color: #fafbfc; /* subtle background, can be removed */
    }
    .asada img {
      border-radius: 8px 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      width: 100%;
      height: auto;
      display: block;
      /* smooth transition for hover effect (scale + shadow) */
      transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
      will-change: transform; /* slight performance boost */
    }
    
    /* --- HOVER EFFECT FOR IMAGES --- */
    /* adds subtle scaling, deeper shadow, and gentle brightness refinement */
    .asada img:hover {
      transform: scale(1.02);
      box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.05);
       cursor: default;      /* indicates interactive element (optional but enhances UX) */
    }
    
    /* ensure text content is readable */
    .asada h2 {
      font-weight: 800;
      margin-bottom: 1rem;
      color: #000;
    }
    .asada .lead-text {
      font-size: 1.1rem;
      color: #000;
      line-height: 18px;
    }
    .asada .product-list {
      color: #424242;
      line-height: 1.6;
    }
    /* subtle improvement for the global trust badge (no interference with hover) */
    .asada .trust-badge {
      transition: background-color 0.2s;
    }
    /* nothing extra – just clean layout with smooth image interaction */